/mynimal-html5-boilerplate

The most μnimal html5 boilerplate out there in cyberspace!

mynimal-html5-boilerplate

If you search online for a minimalistic html5 boilerplate, you find a lot of 💩. All I want is the most basic html5-boilerplate. NOW! And so this is it!

The μnimal-html5-boilerplate!

💾 PLEASE COPY THIS FLOPPY! 💾

μnimal-html5-boilerplate

<!doctype html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title></title>
  </head>
  <body>
  </body>
</html>

Useful tags

Scaling the document's viewport according to the device's width

<meta name="viewport" content="width=device-width, initial-scale=1" />

Using an inline <script> tag

<script type="text/javascript">
  console.log("hello world");
</script>

Using a <script> tag to link a JS file

<script src="javascript.js"></script>

Linking to a css style sheet

<link rel="stylesheet" href="styles.css">

License

MIT