CSS - INSERT
Links
// INSERT CSS INTO HTML
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css"> //External file
<style> // inside the head tag
body {
background-color: linen;
}
</style>
</head>
<body>
<h1 style="color:blue;text-align:center;">This is a heading</h1> //inline
<p>This is a paragraph.</p>
</body>
</html>
// Operate
From top to bottom.