Css
Css
An external style sheet can be linked to an HTML document using the <link> tag. This
tag goes inside the <head> section. Ex.
<!DOCTYPE html>
<html lang="en">
<head>
<title>My HTML Document</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph of text.</p>
</body>
</html>
CSS Syntax