Skip to content

Instantly share code, notes, and snippets.

@joyrexus
Created May 11, 2014 18:24
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 joyrexus/93492984dd1032ae0805 to your computer and use it in GitHub Desktop.
Save joyrexus/93492984dd1032ae0805 to your computer and use it in GitHub Desktop.
HTML template

Simple template for a web page.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
  body {
    margin: 40px;
    background: aliceblue;
  }
  #greeting {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 100;
    font-size: 120px;
    color: steelblue;
  }
</style>
<body>
  <div id="greeting"></div>

<script>
  greeting.textContent = "Hello, world!";
</script>
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
margin: 40px;
background: aliceblue;
}
#greeting {
font-family: "Helvetica Neue", sans-serif;
font-weight: 100;
font-size: 120px;
color: steelblue;
}
</style>
<body>
<div id="greeting"></div>
<script>
greeting.textContent = "Hello, world!";
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment