This is a simple task from a Coursera course in duke
A Pen by Ginny Ghezzo on CodePen.
This is a simple task from a Coursera course in duke
A Pen by Ginny Ghezzo on CodePen.
| <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; | |
| } |
My first gist