I am a lazy programmer, which is why I often frequent this very site.
Occasionally, I cannot, for want of better searching, find what I am looking for on here.
Today I am posing this question:
What is a good HTML5
"bare bones, blank web page" template to begin my projects with?
Currently, I was looking at using this little beauty I found at sitepoint:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The HTML5 Herald</title>
<meta name="description" content="The HTML5 Herald">
<meta name="author" content="SitePoint">
<link rel="stylesheet" href="css/styles.css?v=1.0">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<script src="js/scripts.js"></script>
</body>
</html>
Now, I will admit to only searching for about 30 minutes, that is a long time to achieve a blank page!
I also became aware of html5 boilerplate as I was putting tags for this question - very in-depth, handy, and a little too much for a quick 'bare bones, get me going sir' template to grab and run, heck, you have to download stuff.
HTML5 Reset appears to be alot slimmer, and a good starting point to pare away at..yet..