Skip to content

Instantly share code, notes, and snippets.

Created May 12, 2014 01:09
Show Gist options
  • Save anonymous/efbc71b3fe7392ca3645 to your computer and use it in GitHub Desktop.
Save anonymous/efbc71b3fe7392ca3645 to your computer and use it in GitHub Desktop.
A Pen by Anonasaurus Rex.
<div id="mydiv" class="container">
<h1 style="color:orange">Hello</h1>
<p id="name">My name is Vivian</p>
I like
<ul>
<li class="yes">books</li>
<li>bugs</li>
<li>cats</li>
<li class="no">dogs</li>
</ul>
My favorite colors are:
<ol>
<li>pink</li>
<li>purple</li>
<li>rainbow</li>
<li>happy colors</li> </ol>
<img src="http://what-if.xkcd.com/imgs/a/95/pyramid_space.png" title="Also if that pointy house is pointing at the ground you are probably having a very bad time.">
</div>
li {
color: rgb(200,20,200);
}
ul {
list-style: square;
}
ol {
list-style: upper-roman;
}
#name {
border: blue 2px dashed;
font-size: 20px;
}
.no {
text-decoration: line-through;
}
.yes {
font-size: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment