Last active
December 21, 2015 07:28
-
-
Save troyth/6271084 to your computer and use it in GitHub Desktop.
HTML5 web page template with embedded css and javascript
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> | |
<head> | |
<title>Page Title</title> | |
<style> | |
<!-- add CSS styling here --> | |
</style> | |
</head> | |
<body> | |
<!-- add page content here --> | |
This is the page content. | |
<script> | |
<!-- add javascript here --> | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment