CSS INTRODUCTION
What is CSS?
- CSS stands for Cascading Stylesheet
- CSS is a stylesheet language used to describe the presentation of an HTML document.
- CSS describes how elements should be rendered on screen.
CSS Prerequisites
- Basic knowledge of working with files or file management.
- Basic understanding of HTML. In order to start learning CSS you have to have a basic understanding of HTML first. If your new to HTML you can install this app Learn HTML.
Why Use CSS
- CSS defines styles of your web pages including design, layout and variations in display across devices and screen sizes.
- CSS can save you a lot of work. An external stylesheet saved as .css can be used to style multiple web pages all at once!
CSS Example
body {
background-color: black;
}
P {
font-size: 20px; color: gold;
}
<! DOCTYPE html> |