1+ <!DOCTYPE html>  
2+ < html  lang ="en "> 
3+ 
4+ < head > 
5+  < meta  charset ="UTF-8 "> 
6+  < meta  name ="author " content ="Dave Gray "> 
7+  < meta  name ="description " content ="This page contains all the things I am learning how to create as I learn HTML. "> 
8+  < title > My First Web Page</ title > 
9+  < link  rel ="icon " href ="html5.png " type ="image/x-icon "> 
10+  < link  rel ="stylesheet " href ="main.css " type ="text/css "> 
11+ </ head > 
12+ 
13+ < body > 
14+  < h1 > My Goals for the Year</ h1 > 
15+ 
16+  < hr > 
17+ 
18+  < nav > 
19+  < ul > 
20+  < li > 
21+  < a  href ="#html "> Learning HTML</ a > 
22+  </ li > 
23+  < li > 
24+  < a  href ="#vacation "> Planning a Vacation</ a > 
25+  </ li > 
26+  </ ul > 
27+  </ nav > 
28+ 
29+  < hr > 
30+ 
31+  < section  id ="html "> 
32+  < h2 > I'm Ready to Learn HTML</ h2 > 
33+  < p > This is my first web page.</ p > 
34+ 
35+  < h3 > My Daily Schedule</ h3 > 
36+  < p > Let me tell you how:</ p > 
37+  < ol > 
38+  < li > ...I learn more about web dev.</ li > 
39+  < li > ...I plan out my schedule.</ li > 
40+  < li > ...I use resources from < abbr  title ="Mozilla Developer Network "> 
41+  < a  href ="https://developer.mozilla.org/ "> MDN</ a > 
42+  </ abbr > .</ li > 
43+  </ ol > 
44+  </ section > 
45+ 
46+  < hr > 
47+ 
48+  < section  id ="vacation "> 
49+  < h2 > I Am Also Planning a Vacation</ h2 > 
50+  < p > I've been working hard and < em > really need a getaway</ em > .</ p > 
51+  < p > I live in < abbr  title ="Kansas "> KS</ abbr >  so I want visit a beach.</ p > 
52+ 
53+  < h3 > Place I'd Like to Visit</ h3 > 
54+  < ul > 
55+  < li > 
56+  < p > I've heard good things about the Caribbean.</ p > 
57+  </ li > 
58+  < li > 
59+  < p > I've heard good things about going here:</ p > 
60+  < address > 
61+  Margaritaville Island Reserve Riviera Cancún< br > 
62+  Bahia Petempich Puerto Morelos, Mexico< br > 
63+  Colonia Morelos, México 77580
64+  </ address > 
65+  </ li > 
66+  </ ul > 
67+  <!-- TODO: Add more places --> 
68+  < h3 > Places I Want to Avoid</ h3 > 
69+  < dl > 
70+  < dt > North Pole</ dt > 
71+  < dd > I hear this is < strong > cold</ strong > !</ dd > 
72+ 
73+  < dt > South Pole</ dt > 
74+  < dd > This is also cold.</ dd > 
75+ 
76+  < dt > Mountain Tops</ dt > 
77+  < dd > These are also cold.</ dd > 
78+  </ dl > 
79+  </ section > 
80+ 
81+  < hr > 
82+  <<< © < a  href ="about.html "> Dave Gray</ a >  >>>
83+  < p > 
84+  < a  href ="# "> Back to Top</ a > 
85+  </ p > 
86+ </ body > 
87+ 
88+ </ html > 
0 commit comments