-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
191 lines (182 loc) · 4.75 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="author" content="Devop Parker">
<meta name="description" content="This page contains information to learn HTML">
<title>My First Web Page</title>
<link rel="icon" href="img/html5.png" type="image/x-icon">
<link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<header>
<h1>My Goals for the Year</h1>
<nav aria-label="primary-navigation">
<ul>
<li>
<a href="#html">Learning HTML</a>
</li>
<li>
<a href="#vacation">Planning a Vacation</a>
</li>
<li>
<a href="#contact">Contact Me</a>
</li>
</ul>
</nav>
</header>
<hr>
<main>
<article id="html">
<h2>I'm Ready to Learn HTML</h2>
<p>This is my first web Page</p>
<section>
<h3>HTML5</h3>
<img src="img/html_logo.png" alt="HTML5 Logo" title="I am learning HTML5" width="300" height="300">
<figure>
<figcaption>An Example of HTML5 code</figcaption>
<p>
<code><h1>Hello World</h1></code>
</p>
</figure>
</section>
<section>
<h3>My Daily Schedule</h3>
<p>Let me tell you how:</p>
<ol>
<li>... I learn more about web dev.</li>
<li>... I plan out my schedule.</li>
<li>... I use resources from <abbr title="Mozilla Developer Network">
<a href="https://developer.mozilla.org/">MDN</a></abbr>.
</li>
</ol>
<aside>
<details>
<summary>Guess the <mark> number of hours </mark> I code per day.</summary>
<p>I start at <time datetime="08:00">8 am</time> and I write code for <time datetime="PT3H">3
hours</time> every morning.</p>
</details>
</aside>
<br>
<table>
<caption>My Daily Schedule</caption>
<thead>
<tr>
<th> </th>
<th scope="col">Time</th>
<th scope="col">Activity</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Morning</th>
<td>
<time datetime="08:00">8am</time>-<time datetime="11:00">11am</time>
</td>
<td>Write Code</td>
</tr>
<tr>
<th scope="row">Break</th>
<td>
<time datetime="11:00">11am</time>-<time datetime="12:00">12pm</time>
</td>
<td>Eat Lunch</td>
</tr>
<tr>
<th scope="row">Afternoon</th>
<td>
<time datetime="12:00">12pm</time>-<time datetime="17:00">5pm</time>
</td>
<td>Study for other courses</td>
</tr>
<tr>
<th scope="row">Evening</th>
<td rowspan="2">All Other Times</td>
<td>Free Time</td>
</tr>
<tr>
<th scope="row">Night</th>
<td>Sleep</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">And that's what I do every day, five days a week. Just eat, sleep, and code
...and recharge!</td>
</tr>
</tfoot>
</table>
</section>
</article>
<hr>
<article id="vacation">
<h2>I Am Also Planning a Vacation</h2>
<p>I've been working hard and <em> really need a getaway. </em></p>
<p>
I live in <abbr title="California">CA</abbr> so I want to visit a beach.
</p>
<section>
<h3>Places I'd Like to Visit</h3>
<ul>
<li>
<p>I've heard good things about the Caribbean.</p>
<figure>
<img src="img/caribbean.jpg" alt="Carribean Beach" title="I want to visit a Carribean Beach"
width="400" height="225" loading="lazy">
<figcaption>
Carribean Beach Getaway
</figcaption>
</figure>
</li>
<li>
<p>I've heard good things about going here:</p>
<address>
Margaritaville Island Reserve Riviera Cancún<br>
Bahia Petempich Puerto Morelos, Mexico<br>
Colonia Morelos, México 77580
</address>
<figure>
<img src="img/vacation.jpg" alt="Cancún Vacation" title="Cancún is an amazing place."
width="400" height="267" loading="lazy">
<figcaption>
A Carribean Vacation Image
</figcaption>
</figure>
</li>
</ul>
</section>
<!-- TODO: Add more places
Avoid these because they don't have any semantic values, and can be replaced by other tags.
<div></div>
<span></span>
-->
<section>
<h3>Places I Want to Avoid</h3>
<dl>
<dt>North Pole</dt>
<dd>I hear this is <strong>cold</strong>!</dd>
<dt>South Pole</dt>
<dd>This is also cold.</dd>
<dt>Mountain Tops</dt>
<dd>These are also cold.</dd>
</dl>
</section>
</article>
<hr>
<article id="contact">
<h2>Contact Me</h2>
<p>I'd really like to hear from you!</p>
<form action=""></form>
</article>
</main>
<hr>
<footer>
<p>
<<< © <a href="about.html"> Devop Parker</a> >>>
</p>
<p>
<a href="#">Back to Top</a>
</p>
</footer>
</body>
</html>