Blank HTML with External CSS

Blank HTML Template

A blank HTML template with an external CSS file and no javascript.

Download ZIP

Zip contains 2 files (see below)

<!doctype html>

<html lang=”en”>

<head>
<meta charset=”utf-8″>
<title>Insert Your Page Title Here</title>
<meta name=”description” content=”This is the description that search engines will display. Aim for 145-155 characters.”>
<meta name=”author” content=”Insert the content author or owner name here”>

<link rel=”stylesheet” href=”css/style.css”>

</head>

<body>
</body>

</html>

body {
  background-color:#ffffff;
}