Skip to content

Instantly share code, notes, and snippets.

@awentzonline
Created July 30, 2014 21:10
Show Gist options
  • Select an option

  • Save awentzonline/2eb75ecbf8d07a2bc745 to your computer and use it in GitHub Desktop.

Select an option

Save awentzonline/2eb75ecbf8d07a2bc745 to your computer and use it in GitHub Desktop.
HTML10
<!DOCTYPE html>
<html>
<head>
<title>Blink</title>
<style type="text/css">
blink {
display: block;
}
.nav > blink {
display: inline-block;
}
.heading {
font-size: 200%;
font-weight: bold;
}
.content {
padding: 15px;
}
</style>
</head>
<body>
<blink class="heading">Welcome to my World Wide Web Log!</blink>
<blink class="nav">
<blink><a href="#">Home</a></blink>
<blink><a href="#">About</a></blink>
</blink>
<blink class="content">
<blink>This is a cool page!</blink>
</blink>
<blink class="footer">
&copy; 2014
</blink>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment