Updating Our Template

Wrap and Review

We now have a standards-compliant barebones HTML+CSS template to work with. Our final HTML markup looks like this:

<!doctype html>

<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
<title>My HTML Template</title>
</head>

<body>
</body>

</html>

And our .css looks like this:

@charset "utf-8";

body{
margin: 0;
}

Do you feel ready to apply this template to a real web site?