Blank Templates—HTML5 & CSS

Oftentimes I you need to start a blank HTML5 document. Here’s an HTML% boilerplate that gives you a starting point with your project:

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
</head>

<body>
</body>
</html>

And here’s a blank CSS template:

@charset "UTF-8";
/* CSS Document */

Code away.

Divi WordPress Theme