Tag Archives: featured
CSS
This CSS Tutorial is right place to learn CSS from beginner to advanced level.
CSS Introduction
CSS stands for Cascading Style Sheets.
Cascading” means that one or more style sheets can be applied on the HTML document one after the other using some rules.
So, the same tag can use one or more styles.In short, for Styling the HTML document, you have to use CSS.
HTML simply creates the structure or skeleton while CSS will make the website colorful,better and clear.
- CSS stands for Cascading Style Sheets.
- For Styling the HTML document, you have to use CSS.
- You can create CSS files in the HTML document as well as an external files.
- The external CSS files are more popular and widely used.
- Mostly, we apply CSS by creating Ids and Classes but there are other ways as well. We will discuss all these in this tutorial.
- At the time of writing the 1st version of this tutorial, CSS3 is most popular version of CSS.
Pictorial Difference between HTML and CSS
Why CSS is used
Code re-usability.
It helps you to apply style on HTML tags.
Prerequisite to learn CSS
The learner should have a basic understanding of HTML/HTML5 in order to learn CSS.
Without CSS
<!DOCTYPE html> <html> <head> </head> <body> <h3> Here</h3> <p>Hello, this is without CSS</p> </body> </html>
Output
Here
Hello, this is without CSS
With CSS
<!DOCTYPE html> <html> <head> <style> h3 { color:blue; background-color:yellow; padding:3px; } p { color:black; } </style> </head> <body> <h3> Here</h3> <p>This is with CSS</p> </body> </html>
Output
Here
This is with CSS
What you will learn?
This CSS tutorial teaches you everything about CSS right from the beginning to advanced level and each topic has explanation, theory, syntax and real life examples.
Most of the topics contains images to explain the topics clearly like the one below-
Brackets tutorial
Brackets Tutorial
This article is about Adobe Brackets Tutorial.
Brackets is an open source code editor which is best suited for Website Designers and Front-end Web Developers.
It is one of the best free tools for Front End Web Development. It is lightweight, fast and easy to work with.
Brackets is written in HTML, CSS and JavaScript.
This tutorial explains Brackets text editor from beginners to expert level and students will be able to learn these topics-
Brackets text editor is so easy to work with that you can easily start coding.
This is a complete Brackets tutorial for Beginners, Intermediate Level Programmers or Experienced Developers who are using other code editors and want to switch to Brackets.
Brackets has MIT License and was first introduced in 2014 by Adobe. It is undoubtedly the best HTML & CSS Editor. Even the support for JavaScript is growing fast and it has a good amount of extensions to edit JavaScript files.
In the latest update, the PHP support is also present and you can run your PHP code using this editor as well.
Current version:
Brackets 1.14
At the time of writing this tutorial, Brackets has launched Brackets version 1.14.
This version has lots of updated features like autocomplete, go to definition, support document, etc. It provides code hinting for PHP code, definition, hints for function parameter, references and much more.
Brackets also supports PHP coding through the integration of a PHP server like XAMPP, WAMP, MAMP or any other local web server.
Important Features of Brackets
- Live Preview – This feature helps you to see the output of your HTML or CSS code instantly on the browser as soon as you do the changes.
- Automatic save – This tool automatically saves your changes.
- Extensions and Themes – Lots of Extensions and Themes are available to customize the look, feel and ease of doing coding.
- Quick Edit tool – This is the best feature of this tool using which you can quickly edit the CSS and JavaScript files from your document.
- Clean Interface – As it is lightweight and user friendly, it has a beautiful clear interface.
- Frequent updates & Maintainability – As it is maintained by Adobe community, it has frequent updates and maintenance.
- Cross Platform – This tool works on Windows, Mac and most of the Linux distributions.
- Preprocessor support – It supports preprocessors like LESS and SCSS files.
- Quick Docs – It provides the required documentation help as a quick document reference. On windows, the shortcut key is Ctrl+k and in Mac, it is Cmd+k.
- Split View -This features helps to split the main view to show more than 1 view in either horizontal or vertical direction.