Skip to content

Instantly share code, notes, and snippets.

@ravasthi
Created February 6, 2013 17:16
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 ravasthi/4724134 to your computer and use it in GitHub Desktop.
Save ravasthi/4724134 to your computer and use it in GitHub Desktop.
The story thus far…
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
h1
{
color: midnightBlue;
}
p.important
{
padding: 10px;
background-color: aliceBlue;
}
#first-name
{
font-weight: bold;
}
.even-more-important
{
border: 3px solid #999999;
}
</style>
<title>Hello world!</title>
</head>
<body>
<h1>Hello world!</h1>
<p class="important">My name is <span id="first-name">Richa</span>.</p>
<p>I like Amazonian tree frogs.</p>
<p class="even-more-important">A third paragraph.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment