top of page

Search Results

32 items found for ""

  • Learning CSS is worth 6 hours. Zero to hero at CSS.

    Here is a tutorial by freecodecamp.org providing you with 6 hours of valuable tutorial to become a hero in CSS. This free css tutorial absolutely worth it! Learn CSS in this full course for beginners. CSS, or Cascading Style Sheet, is responsible for the styling and looks of a website. In this course, we cover CSS from the ground up. You will learn everything from basic skills, such as coloring and text, to highly advanced skills, like custom animations. You will learn about: •Coloring •Formatting •Text •Layout •Grid •Flexbox •Animations •Transitions •And more! 💻 Code: https://github.com/Video-Lab/css-cour... 🎥 Course from Jad Khalili. To view more content from this instructor, visit: https://www.udemy.com/user/jad-khalili/ ⭐️ Course Contents ⭐️ ⌨️ (0:00:00) Course Achievements & Results ⌨️ (0:02:36) Introduction to Course ⌨️ (0:11:19) Downloading Necessary Software ⌨️ (0:12:30) Where to Find Project Files ⌨️ (0:14:28) What is CSS? ⌨️ (0:17:09) Creating & Linking a CSS Stylesheet ⌨️ (0:20:39) How to Test a Stylesheet ⌨️ (0:22:12) What is a Selector? ⌨️ (0:25:54) Classes & ID's in HTML ⌨️ (0:31:52) Specificity & When to use Selectors ⌨️ (0:39:13) Pseudoselectors ⌨️ (0:47:58) Advanced Selectors ⌨️ (0:59:30) Attribute Selectors ⌨️ (0:09:38) What are Properties? ⌨️ (1:12:59) The CSS General Rule ⌨️ (1:17:37) Types of Colors ⌨️ (1:24:53) Coloring Text ⌨️ (1:32:30) Background Colors ⌨️ (1:36:56) Images/URL's in CSS ⌨️ (1:42:30) Other Background Properties ⌨️ (1:48:59) Opacity/Transparency ⌨️ (1:52:17) Gradients ⌨️ (2:04:12) Introduction to Types of Units ⌨️ (2:15:57) Text Manipulation ⌨️ (2:23:54) Font Size, Bolding & Style ⌨️ (2:30:33) Font Families ⌨️ (2:37:08) Including External Fonts w/ Google Fonts ⌨️ (2:43:14) Using External Fonts ⌨️ (2:49:07) The CSS Box Model ⌨️ (2:53:18) Changing Content Size ⌨️ (2:59:07) CSS Borders ⌨️ (3:05:51) Margin & Padding ⌨️ (3:15:17) Float & Display Types ⌨️ (3:27:47) What is Flexbox? ⌨️ (3:31:35) Creating a Flex Container ⌨️ (3:34:09) Flex Direction & Wrap ⌨️ (3:38:26) Content Alignment ⌨️ (3:44:45) Flex Item Order ⌨️ (3:49:32) Shrink, Grow, & Basis ⌨️ (4:00:03) The 'flex' Property ⌨️ (4:03:21) Item Alignment ⌨️ (4:08:16) Grid vs Flexbox ⌨️ (4:11:14) Creating a Grid ⌨️ (4:13:30) Template Columns & Rows ⌨️ (4:21:12) Justify & Align Grid ⌨️ (4:28:10) Row & Column Gaps ⌨️ (4:33:13) Column & Row Lines ⌨️ (4:40:46) Grid Area ⌨️ (4:44:38) The Transition Property ⌨️ (4:58:05) Transformation Functions ⌨️ (5:12:26) Creating Animations w/ Keyframes ⌨️ (5:20:30) Adding an Animation ⌨️ (5:23:23) Animation Properties ⌨️ (5:34:49) Website Transformation Challenge ⌨️ (5:38:22) Website Transformation - SOLUTION ⌨️ (5:13:32) What to Learn Next

  • HTML Tutorial For Beginners | Learn HTML In 30 Minutes | Designing A Web Page Using HTML

    Here is a 30 minutes tutorial of HTML for beginners provided by Edureka. It's very easy to get started and begin with creating a live webpage with HTML in just 30 min. This Edureka video on "HTML Tutorial" will provide you with a detailed and comprehensive knowledge about HTML. In this HTML Tutorial for Beginners you will learn HTML concepts from scratch and also how to create your first web page using HTML Tags. Below are the topics covered in this HTML Tutorial: What is HTML?- 0:20 Structure of HTML- 1:03 Steps to Create a HTML Page- 1:55 Doctype Declaration- 3:33 Head Tag - 4:55 Paragraph Tag- 5:35 Image tag- 5:55 Line break(br) tag – 7:19 Text Style – 7:43 Horizontal line (hr) tag – 8:46 Link – 9:10 Lists – 9:51 Div Tag- 13:09 Forms- 13:45 Tables – 22:44 Blog- 25:31 Subscribe to the Edureka YouTube channel and hit the bell icon to get video updates: https://goo.gl/6ohpTV Best way to learn HTML as a begginer: HTML and CSS are very easy to learn and best way to learn is to build small projects. Before starting the project there are few guidelines you should be aware about and must be followed while writing code. HTML – Hypertext Markup Language : All critical website content should be added to the website using a markup language such as HTML. Proper comment section should be used before writing any code because it will help us in identifying why this code has been written and what is the use. Always add “alt” attributes to images because it will help when an image for some reason cannot be displayed Use lower case element and attribute names. Use correct document type – Always declare the document type as the first line in your document. Close all HTML elements and quote the attribute values. Do not add blank lines & indentation unnecessarily. Avoid code lines over 80 characters. Representation of HTML: CSS – Cascading style sheets: Presentation of the website content should be defined by a styling language such as CSS. Use simple syntax for linking to style sheets (the type attribute is not necessary) with proper comments. Place the opening bracket on the same line as the selector Use one space before the opening bracket Use two spaces for indentation Use semicolon after each property-value pair, including the last Only use quotes around values if the value contains spaces Place the closing bracket on a new line, without leading spaces Avoid lines over 80 characters New file should be used for creating CSS Representation of CSS: Class: If there are multiple elements on a single web page and that need to be styled then we use classes. For example, let’s say that you want to give a redirect a particular button to some site or at the new page or at pressing the button it’s color should be changed. So for modifying colors & redirecting page to some link, we use classes and for that, you could add a class to each of those buttons or the container holding the buttons. Representation of classes: CSS/JavaScript custom file: We are using a framework using different libraries then we should not change the library files instead of that we should create an another file and then do the customization. For example, in bootstrap, we are using a navbar and it contains its own CSS file navbar-default and we are asked to change in that particular file so for that we’ll create a new custom CSS file. Bootstrap library file: CSS According Framework: A framework is defined as a package made up of the structure of files and folders of standardized code (HTML, CSS, JS documents etc.) which can be used to support the development of the website, as a basis to start building a site. So as to use framework we should place the library along with proper commenting. Representation of Library: Single Page CSS: For every page, there should be separate CSS file and it should contain the information about that particular page only. For example, let’s say there are four pages (Home, About Us, Products Contact Us) so for each and every page there should be separate CSS file with proper commenting and relevant names. Code Re-usability: Code which shares a very similar or identical structure should be written in such a way that it can be used further. The aim of code reusability is to provide a common structure so that developers don’t have to redo it from scratch and can reuse the code provided. In this way, code reusability allows us to cut out much of the work and save a lot of time. Code Check: Before submitting the code it should be reviewed and checked properly maintaining the above guidelines rules. It will help understand the third party user easily without facing any difficulties. In this post, we discuss HTML and CSS guidelines for absolute beginners.

  • Database management System(DBMS) tutorials

    Here is a playlist of Database management system syllabus of Computer science engineering students provided by Jenny's lecutures. What is a database management system (DBMS)? Database management system( DBMS) The system containing set of programs which are used to access, change, manipulate or update the data present in DB is called Database management system (DBMS). The main goal of DBMS is to provide a way to store and retrieve DB information that is both convenient and efficient. A DBMS or simply Database Systems or DBS are designed to manage data of large enterprises, organizations etc, because information is the most important aspect for any organization. How do I learn DBMS in real? Take a sample project. Say your project is about tracking IPL matches (what happens every ball, with every bowler and batsmen). Build your data model. Download an Open source database like MySQL. Convert your data model into the physical databases using the MySQL workbench. Keep populating the data and keep asking yourself questions on the data. For example, how many runs did a particular bowler give away when he bowled in the last two overs? Translate this kind of questions into SQL queries (here too, you will learn DBMS). Keep enriching your data. As you go along your project, remember to keep an SQL book handy (say SQL for dummies). Keep the MySQL reference by your side always. Build more and more interesting case studies like the one I suggested above. You will master DBMS basics very soon

  • Computer Organisation for Comp. Sc engineering

    Here is is a playlist of Computer Organisation for Computer. Science engineering containing 8 short videos by Ravindrababu Ravula. Why is computer organisation thaught to CSE students? Its the most dry subject you have ever come across. Its very very painful to read. Your teacher has never explained it properly (even she didn't understand it completely). You are feeling like a torture to read this subject because there is no logic in it like GT or no programming like in Unix. Its just plain theory. I am right so far because I have asked these questions to myself 5 years back. But now I know why CO is so important. Its useful for people who go for Masters or PhD in computers. Its useful for students who go for research in computers. Its useful for people who work in Software architecture. The whole point of putting this subject is to familiarize students with various concepts of computer and then students can decide what they want to specialize in. computer organization tells you how different components are interconnected , how they work , it means the complete physical aspects of computer, so in order to make computer more powerful we need to find better circuit design , fast memory types , better interconnection between components , and all this need the study in deep of computer organization. Computer architecture : It is logical view of computer to the end user, it includes the microprocessor instruction sets , the instruction format , addressing modes , the physical addresses , whenever we compile a code it is converted into machine code and that machine code based on the computer architecture, so in order to develop a new language we need to know the computer architecture . Theory of computation and compiler : it tells us that given problem can be solved or not if yes then which algorithm solve it efficiently. It is the core of grammar design for any programming language, and compiler uses TOC in its different phases like DFA, PDA etc. As long as you are designing application software you don't need to study these subjects , but for designing system software you have to study them in deep.

  • Data structures and Algotithims complete playlist by NPTEL

    Lecture Series on Data Structures and Algorithms by Dr. Naveen Garg, Department of Computer Science and Engineering ,IIT Delhi. Introduction to Data Structures and Algorithms.Data Structure is a way of collecting and organising data in such a way that we can perform operations on these data in an effective way. ... The only difference being, data structures provides for techniques to access and manipulate data efficiently. The complete playlist explaining everything required for computer science students about Data structures and Algorithims is provided below.

  • 24 hour C# beginner to advance course. Seriously!

    Ever imagined a full C sharp course of 24 hours where you can learn the whole language by creating a application? It's real. It is made by Tim Corey, FreeCodeCamp.org. In this comprehensive 24-hour-long course, you will learn to use C# to build a complete application from start to finish. Using .net and Visual Studio, we will construct a tournament tracker application that is fit to launch. The application uses Winforms, a class library, events, SQL database, text file data storage (in CSV format), custom events and more. ⌨️ (00:00:00) 01 - Initial Planning ⌨️ (00:16:45) 02 - Overview Planning ⌨️ (00:46:09) 03 - Data Design ⌨️ (01:15:06) 04 - User Interface Design ⌨️ (01:34:26) 05 - Logic Planning ⌨️ (01:50:02) 06 - Class Library Creation ⌨️ (02:06:10) 07 - Form Building ⌨️ (03:08:24) 08 - SQL Database Design ⌨️ (04:12:49) 09 - Prize Form Wire Up ⌨️ (05:36:04) 10 - SQL Connection ⌨️ (06:46:37) 11 - Text Connection ⌨️ (07:44:24) 12 - Create Team Form Part 1 ⌨️ (08:29:18) 13 - Create Team Form Part 2 ⌨️ (09:12:34) 14 - Create Team Form Part 3 ⌨️ (10:01:06) 15 - Create Tournament Form Part 1 ⌨️ (10:33:21) 16 - Create Tournament Form Part 2 ⌨️ (11:15:17) 17 - Create Tournament Form Part 3 ⌨️ (12:34:12) 18 - Create Tournament Form Part 4 ⌨️ (13:45:48) 19 - Create Tournament Form Part 5 ⌨️ (16:12:12) 20 - Debugging ⌨️ (17:09:09) 21 - Dashboard Form ⌨️ (17:58:42) 22 - Tournament Viewer Part 1 ⌨️ (19:07:33) 23 - Tournament Viewer Part 2 ⌨️ (20:23:30) 24 - Refactoring ⌨️ (21:30:51) 25 - Error Handling ⌨️ (21:52:55) 26 - Emailing Users ⌨️ (23:01:27) 27 - Wrapping Up 🎥Tutorial from Tim Corey. Check out his channel: https://youtube.com/IAmTimCorey 🔗Tim's website: https://www.IAmTimCorey.com

  • 10 C++ video tutorials for lazy geeks

    Lazy people, less talk, less scroll... Directly beginning the list. 1. Buckys C++ Programming Tutorials(youtube.com) 2. C++ Tutorial(youtube.com) 3. Introduction to pointers in C/C++(youtube.com) 4. Advanced C++ Graphics Tutorials(youtube.com) 5. C++/Game Tutorials(youtube.com) 6. C++ For Programmers(udacity.com) 7. C++ For C Programmers(coursera.org) 8. Entire C++ language in one video(youtube.com) 9. C++ Tutorial - Absolute n00b(youtube.com) 10. C++ - TheChernoProject(youtube.com) Don't be lazy while practicing

  • 5 C programming tutorials you will ever watch!

    Welcome to Owl Code - A platform filled with best programming related tutorials across the internet. Whether you are an experienced programmer or not, this website is intended for everyone who wishes to learn the C programming language. Here are the 5 C programming tutorials you will ever watch! 1. C Programming for Beginners | C Programming Tutorial | Learn C | Intellipaat 🔥Intellipaat C Programming & Data Structure Training: https://intellipaat.com/c-data-struct... In this C Programming for beginners video you will learn C Programming right from beginning to all the advanced concepts required to master this language. This C Programming tutorial is a full C Programming course where you will master how to write programs in C language extensively. #CProgrammingforBeginners#CProgrammingTutorial#CProgramming 📌 Do subscribe to Intellipaat channel & get regular updates on videos: http://bit.ly/Intellipaat 📕 Read complete C Programming tutorial here: https://bit.ly/2Lwg0ci 📝 Are you looking for something more? Enroll in our C Programming & data structure certification training and become a certified C Programmer (https://intellipaat.com/c-data-struct...). It is a 16 hrs instructor led Intellipaat C Programming training which is completely aligned with industry standards and certification bodies. 2. C Programming Tutorial for Beginners by Freecodecamp.org This course will give you a full introduction into all of the core concepts in the C programming language. Follow along with the tutorial video and you'll be a C programmer in no time! Course developed by Mike Dane. Check out his YouTube channel for more great programming courses: https://www.youtube.com/channel/UCvmI... 3. C Programming For Beginners | Learn C Programming | C Tutorial For Beginners | Edureka 🔥 Edureka Online Courses: https://www.edureka.co This Edureka video on "C Programming For Beginners" ( C Tutorial blog: https://www.edureka.co/blog/c-program... ) will help you to Learn C Programming basics with examples. This C tutorial for beginners covers all the topics for all the three categories of learners, beginner, intermediate and experienced professionals. 4. C Programming Tutorial | Learn C programming | C language C Programming Language is the most popular computer language and most used programming language till now. It is very simple and elegant language. 1) This is by far the most comprehensive C Programming course you'll find here, or anywhere else. 2) This C Programming tutorial Series starts from the very basics and covers advanced concepts as we progress. This course breaks even the most complex applications down into simplistic steps. 3) It is aimed at complete beginners, and assumes that you have no programming experience whatsoever. 4) This C Programming tutorial Series uses Visual training method, offering users increased retention and accelerated learning. Every programmer should and must have learnt C whether it is a Java or C# expert, Because all these languages are derived from C. In this tutorial you will learn all the basic concept of C programming language. Every section in this tutorial is downloadable for offline learning. Topics will be added additional to the tutorial every week or the other which cover more topics and with advanced topics. This is we will Learn Data Types, Arithmetic, If, Switch, Ternary Operator, Arrays, For Loop, While Loop, Do While Loop, User Input, Strings, Functions, Recursion, File I/O, Exceptions, Pointers, Reference Operator , memory management, pre-processors and more. 5. C PROGRAMMING FOR BEGINNERS - FULL COURSE - Theory + 101 Programs Video tutorials - by kodegod * INDEX * 00:21 Introduction 01:35 Basics of computer programming 03:49 Format specifiers 06:31 First computer program 07:27 Character sets & constants 08:55 Basic data types, int, char & float 09:52 Variable declaration & initialisation 14:17 Basic operators 17:12 Arithmetic instructions Arithmetic operations 18:18 Addition,Subtraction,Multiplication & Division 21:31 Area of Circle & Triangle 24:23 Simple Interest 25:44 Square & Cube 26:51 Total & average 29:00 SWAP two numbers Escape Sequences 32:14 Theory 34:26 Drawing a tree using escape sequences IF & IF ELSE 35:19 Syntax 40:17 Largest of two numbers 41:02 Positive or not 42:17 Greater or less than 10 43:08 Even/odd 44:09 Divisible by 5 44:59 Multiple of 7 45:45 Compare two numbers 46:55 Logical operators 50:07 3 numbers in ascending/descending order 53:01 Calculate discriminant & roots of a quadratic equation 54:29 Calculate grade 56:22 Check marriage eligibility 59:01 Conditional operators While & Do While Loop 01:00:47 Why do we need loops 01:02:24 DO-WHILE & WHILE loops Syntax 01:03:49 WHILE vs Do-WHILE loop 01:04:21 Increment & Decrement Operators 01:07:39 N numbers in sequence 01:09:53 N numbers in reverse order 01:11:10 First N even numbers 01:12:29 N odd numbers 01:13:40 Reverse order of a number 01:16:20 Sum of a number 01:18:48 Armstrong or not For loops 01:23:39 Syntax 01:27:27 Table of given number 01:29:40 Sum of a number FOR loops-Pattern Programming 01:32:34 Pattern programming theory 01:34:42 ◸ of * 01:37:51 ◺ of * 01:40:23 ◿ of * 01:43:38 ◹ of * 01:47:37 █ of * 01:50:39 ▵ of * 01:54:14 ▽ of * 01:56:58 ♢ of * 01:58:11 ◺ of numbers -vertical 02:01:01 ◺ of numbers -horizontal 02:02:51 ▵ of alphabets 02:05:48 ▵ mirroring alphabets 02:09:25 ◺ of integers with integer at the end Advance FOR Loop programs 02:11:47 Factorial 02:16:18 Prime numbers from range 02:22:29 Prime or not 02:27:43 Fibonacci series 02:33:29 Print digits, alphabets using loops 02:36:37 Factorial 02:40:30 Average of numbers 02:43:04 ASCII chart 02:44:21 Rectangular pattern of * 02:46:38 Rectangular pattern using ASCII characters Goto, break & Continue 02:48:59 goto keyword 02:51:12 break & continue keyword Switch case 02:53:39 The syntax of the switch case-control structure 02:55:54 Case-control structures in more detail 02:59:30 Print integers in words 03:00:36 Numbers in words in reverse order using switch case-control 03:02:29 Perform arithmetic operations based on the users choice Functions 03:04:06 What are functions? 03:06:25 Parametrised functions 03:09:18 Addition,subtraction,multiplication,division using functions 03:11:54 Factorial,prime or not & Fibonacci series using functions 03:14:07 Calculate square & cube using functions Arrays 03:16:14 Theory 03:18:11 Single dimensional arrays 03:22:49 Accept array elements & reprint 03:25:36 array elements in reverse order 03:28:11 Addition of array elements 03:30:05 Fibonacci series using arrays 03:32:20 max+min of an array 03:34:46 positive & negative elements of an array 03:37:37 array in ascending/descending order Multidimensional arrays 03:40:01 Theory 03:43:55 Accept MxN matrix & reprint 03:46:41 Add two MxN array matrices 03:48:00 Add array elements of two-dimensional arrays 03:49:10 Diagonal elements of a matrix 03:51:00 Add upper matrix elements 03:52:16 Add lower matrix elements 03:53:42 Multiplication of matrices 03:57:15 Transpose of the matrix Pointers 03:58:57 What are pointers? 04:00:53 Using pointers More on functions 04:02:47 Call by value & call by reference 04:06:49 Swap two numbers using parametrized functions 04:09:48 Scope of a variable 04:13:01 Recursion 04:14:21 Fibonacci series using recursion 04:18:30 Factorial using recursion 04:21:12 Passing arrays to a function Strings 04:25:12 What is a string? 04:28:07 Inbuilt functions 04:30:26 ASCII characters 04:31:19 string reverse, length, uppercase, lowercase & copy 04:33:06 Count alphabets, digits & symbols 04:34:40 Compare two strings 04:35:24 Concatenate two strings 04:36:10 Length of string 04:37:33 Copy a string from another 04:38:39 String uppercase 04:40:24 String lowercase 04:41:25 Join two strings 04:43:58 Count alphabets digits & symbols without using inbuilt functions 04:45:25 Compare two strings without using inbuilt functions 04:47:31 Count vowels 04:48:39 Reverse a string 04:50:36 Palindrome Structures 04:52:34 What are structures? 04:54:57 Create structure Employee, store values & reprint 04:56:22 Array of a structure 04:59:11 Structure within a structure File operations 05:03:36 What are the files? 05:08:06 Read+write to a file character by character 05:12:33 Read+write to a file line by line 05:15:23 Merge two files Command line arguments 05:17:05 Theory 05:18:50 Programs on command line arguments More 05:21:46 Datatypes 05:27:24 Escape sequences 05:30:39 Type casting 05:32:50 Enumeration 05:35:30 Bitwise operators 05:42:31 Unions

bottom of page