Skip to content

Instantly share code, notes, and snippets.

@kostasx
Forked from exarcheia-web/html-boilerplate
Created October 17, 2018 19:52
Show Gist options
  • Save kostasx/7af6d0be2ba0023f738ea6a13e434064 to your computer and use it in GitHub Desktop.
Save kostasx/7af6d0be2ba0023f738ea6a13e434064 to your computer and use it in GitHub Desktop.
LESSON 2 Standard html5 boilerplate - 2013
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example page</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="favicon.ico" rel="shortcut icon">
<link href="apple-touch-icon.png" rel="apple-touch-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<h1>Hello world</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment