Skip to content

Instantly share code, notes, and snippets.

@happyrobots
Created February 8, 2011 20:34
Show Gist options
  • Save happyrobots/817173 to your computer and use it in GitHub Desktop.
Save happyrobots/817173 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Hello World! This is the title of the page :D</title>
<!-- Style makes your page look prettier. -->
<style>
body {background-color:#ccc}
#content {border:1px solid black}
.bigger {font-size:130%}
</style>
<!-- Interactivity goes here! -->
<script type="text/javascript">
alert('hello!');
</script>
</head>
<body>
<div id="content">Content goes here.
<span class="bigger" style="color:pink">Hurray!</span>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment