CSS
Cascading Style Sheets (CSS) is used to style the pages of websites. It is free and open source like HTML and everyone can use it to style their websites.
In order to learn we will need the following tools.
Text Editor: You can use any one of the following text editor. SublimeText, Notepad++, Atom, Brackets, Coda, TextMate, etc.
IDE: There are IDEs available for HTML coding and one of them is NetBeans.
Web Browser: You can use Chrome, Firefox, Safari and other web browsers for testing the web pages you create.
You can use the online HTML Editor of this website for HTML/CSS coding. HTML Editor
Open your favourite text editor and create a new file and save it as style.css or any other file name that ends with css.
body {
margin : 0;
padding : 0;
}
ADVERTISEMENT