Created
May 8, 2014 15:59
-
-
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).
This file contains 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> | |
<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