Created
December 20, 2011 02:41
-
-
Save Hunter-Dolan/1499971 to your computer and use it in GitHub Desktop.
Haml or HTML
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
%html | |
%head | |
%title My Page | |
%script{:src => "myscript.js"} | |
%body | |
#myDiv | |
%h1 Howdy! | |
%p Hello this is my page! |
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
<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