Skip to content

Instantly share code, notes, and snippets.

@skopp
Created November 9, 2012 21:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skopp/4048253 to your computer and use it in GitHub Desktop.
Save skopp/4048253 to your computer and use it in GitHub Desktop.
HTML - The absolutely basic structure for a functional hypertext markup document. Gist is a code snippet for a blog post
<!doctype html><html><head>
<link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,600' rel='stylesheet' type='text/css' /></head>
<div>
<style>body,html{background-color:brown;font-family:Titillium,arial,sans-serif;font-weight:400;color:pink;}a{font-family:Titillium,arial,sans-serif;font-weight:600;color:white;}</style>
<body>HI! This is a <a href="#">link</a></body>
</div></body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment