Introduction
CSS is rich in capabilities and is more than simply laying out pages.
#External stylesheet
<link href="./path/to/stylesheet/style.css" rel="stylesheet" type="text/css">
#Internal stylesheet
<style>
body {
background-color: linen;
}
</style>
#Inline styles
<h2 style="text-align: center;">Centered text</h2>
<p style="color: blue; font-size: 18px;">Blue, 18-point text</p>
Comments