Skip to content

Instantly share code, notes, and snippets.

@gghezzo
Created November 3, 2015 12:38
Show Gist options
  • Select an option

  • Save gghezzo/e285523007f03340b7bb to your computer and use it in GitHub Desktop.

Select an option

Save gghezzo/e285523007f03340b7bb to your computer and use it in GitHub Desktop.
Duke HTML - Week 2
<html>
<title> My Interests </title>
<h1> By Ginny </h1>
<h2> Books I like for Week 2 </h2>
<ol >
<li>Great Divorce by CS Lewis</li>
<li> The Mouse that Rroared byLeonard Wibberley</li>
<li> The Street by Ann Petry</li>
<li> Invisible Man by Ralph Ellison</li>
<li> Around the World in 80 Days byjules verne</li>
</ol>
<h2>Places I would like to Visit </h2>
<ul>
<li>Spain</li>
<img src="https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRcRY9M7pae5bgDftw4hAXpYuMfnusdakEnafGQOVNAVTyZD8FHZA" height='200' width=300'>
<li>Chicago, IL</li>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Flag_of_Chicago_(ddima).JPG/640px-Flag_of_Chicago_(ddima).JPG" height='200' width=300'>
<li>My Family</li>
</ul>
</html>
ul {
display: block;
list-style-type: disc;
margin-top: 1em;
margin-bottom: 1 em;
margin-left: 0;
margin-right: 0;
padding-left: 40px;
}
@gghezzo
Copy link
Author

gghezzo commented Nov 3, 2015

My first gist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment