This post provides several code snippets that make it easy for beginning (or otherwise) web designers to grab and go. Browse the library and use what is helpful.
Blank HTML template
Code Snippet
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A blank HTML template</title>
<meta name="description" content="Blank HTML template">
</head>
<body>
<p>Hello World!</p>
</body>
</html>