Skip to content

Instantly share code, notes, and snippets.

@HerrPi
Created May 8, 2014 15:59
Show Gist options
  • Save HerrPi/19b22904330350a03b7f to your computer and use it in GitHub Desktop.
Save HerrPi/19b22904330350a03b7f to your computer and use it in GitHub Desktop.
Initial and (almost) empty HTML5 website with prepared CSS style and JS script sections and some other nice features (google fonts, mobile viewport, jquery).
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page title</title>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,700,700italic" />
<link rel="stylesheet" href="styles.css" />
<style>
</style>
</head>
<body>
<h1>This is a test page</h1>
<script src="jquery-2.1.0.min.js"></script>
<script src="scripts.js"></script>
<script>
$(document).ready(function () {
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment