Last active
December 23, 2015 06:09
-
-
Save shaundon/6592352 to your computer and use it in GitHub Desktop.
A skeleton HTML page, with spaces for adding custom CSS and JavaScript, and a number of external JavaScript, stylesheets and fonts added but commented out, allowing you to choose which ones you require. This is mainly for building quick demos of things.
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> | |
<!-- | |
Shaun Donnelly ([email protected]) | |
This is a skeleton HTML page. | |
Copy it, then use it to make HTML demos and other things. | |
In the <head>, there are a number of commented out | |
external includes. Uncomment them to enable. | |
Available includes: | |
JavaScript: | |
Angular | |
jQuery | |
jQuery UI | |
Twitter Bootstrap | |
CSS: | |
Twitter Bootstrap | |
Zurb Foundation | |
Fonts: | |
Open Sans | |
Roboto | |
--> | |
<html> | |
<head> | |
<title><!-- Place title here. --></title> | |
<!-- Place external includes here. --> | |
<!-- Angular. --> | |
<!--<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>--> | |
<!-- Bootstrap CSS and JavaScript. --> | |
<!--<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">--> | |
<!--<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>--> | |
<!-- jQuery. --> | |
<!--<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<!-- jQuery UI. --> | |
<!--<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>--> | |
<!-- Open Sans (font). --> | |
<!--<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>--> | |
<!-- Roboto (font). --> | |
<!--<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,600,700' rel='stylesheet' type='text/css'>--> | |
<!-- Zurb Foundation. --> | |
<!--<link href='//cdn.jsdelivr.net/foundation/4.3.1/css/foundation.min.css' rel='stylesheet' type='text/css'>--> | |
<!-- Place embedded JavaScript here. --> | |
<script> | |
</script> | |
<!-- Place embedded CSS here. --> | |
<style> | |
</style> | |
</head> | |
<body> | |
<!-- Place content here. --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment