Created
February 6, 2013 17:16
-
-
Save ravasthi/4724134 to your computer and use it in GitHub Desktop.
The story thus far…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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