Skip to content

Instantly share code, notes, and snippets.

@Hunter-Dolan
Created December 20, 2011 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hunter-Dolan/1499971 to your computer and use it in GitHub Desktop.
Save Hunter-Dolan/1499971 to your computer and use it in GitHub Desktop.
Haml or HTML
%html
%head
%title My Page
%script{:src => "myscript.js"}
%body
#myDiv
%h1 Howdy!
%p Hello this is my page!
<html>
<head>
<title>My Page</title>
<script src="myscript.js"></script>
</head>
<body>
<div id="myDiv">
<h1>Howdy!</h1>
<p>Hello this is my page!</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment