Introduction to HTML 5 || Final Project || Coursera
Final Project
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Final Project</title> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>Your name</h1> | |
| <nav> | |
| <a href = "http://www.gmail.com">One</a> | |
| <a href = "http://www.facebook.com">Two</a> | |
| <a href = "http://www.google.com">Three</a> | |
| <a href = "http://www.github.com">Github</a><br> | |
| </nav> | |
| </header> | |
| <section> | |
| <h2>Favorite Foods</h2> | |
| <ul> | |
| <li>Pav Bhaji</li> | |
| <li>Gulab Jamun</li> | |
| <li>Apple</li> | |
| <li>Pizza</li> | |
| </ul> | |
| </section> | |
| <section> | |
| <h2>Achievements</h2> | |
| Progress in this course (100%) | |
| <progress value="100" max="100"></progress> | |
| <br> | |
| Progress in the Specialization capstone (20%) | |
| <progress value="20" max="100"></progress> | |
| <br> | |
| Progress in life goals (25%) | |
| <progress value="25" max="100"></progress> | |
| </section> | |
| <section> | |
| <h2>More About Me</h2> | |
| <details> | |
| <summary>My Childhood</summary>I grew up in Mumbai.I lived in a small house and I really miss the fun which I had back then. | |
| </details> | |
| </section> | |
| <footer> | |
| <img src="http://www.intro-webdesign.com/images/newlogo.png" alt="Web Design For Everyone"> | |
| This page was created by Ammar & Colleen van Lent. | |
| To learn more about web design, visit | |
| <a href="http://www.intro-webdesign.com/">Intro to Web Design</a> | |
| </footer> | |
| </body> | |
| </html> | 
Comments
Post a Comment