CSS, or Cascading Style Sheets, is the language for describing the presentation of Web pages, including colors, layout, and fonts.
- Externally -
Example: <link rel="stylesheet" href="nameoffile.css">
- Internally -
Example: <style> within html
- Inline -
Example: <p style="color:red;">This is a paragraph.</p>
p {color: red;}
Read
Skimmed
Resources