Created
September 23, 2015 15:11
-
-
Save alastairtree/391faabb98f732e211b8 to your computer and use it in GitHub Desktop.
simple HTML5 holding page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta content="IE=edge" http-equiv="X-UA-Compatible"> | |
<meta content="width=device-width, initial-scale=1.0" name="viewport"> | |
<title>[TITLE]</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
<style> | |
body { | |
background-color: #EEEEEE; | |
padding-bottom: 40px; | |
padding-top: 40px; | |
} | |
.centre-box { | |
margin: 0 auto; | |
max-width: 600px; | |
padding: 15px; | |
} | |
</style> | |
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> | |
<!--[if lt IE 9]> | |
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"> </script> | |
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"> </script> | |
<![endif]--> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="centre-box"> | |
<h1><small>Hello</small></h1> | |
<p> | |
Welcome to ... | |
</p> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment