-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
198 lines (177 loc) · 6.88 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
192
193
194
195
196
197
198
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Kanishk Bhani">
<meta name="description" content="This page contains all the things I am learning how to create as I learn HTML.">
<title>My First Web Page</title>
<link rel="icon" href="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>
</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_300x300.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!<></code>
</p>
</figure>
</section>
<section>
<h3>My Daily Schedule</h3>
<p>Let me tell you how:
<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>
<th>
Time
</th>
<th>
Activity
</th>
</thead>
<tbody>
<tr>
<td>
<time datetime="08:00">
8am -
</time>
<time datetime="11:00">
11am
</time>
</td>
<td>Write Code</td>
</tr>
<tr>
<td>
<time datetime="11:00">
11am -
</time>
<time datetime="12:00">
12pm
</time>
</td>
<td>Eat Lunch</td>
</tr>
<tr>
<td>
<time datetime="12:00">
12pm -
</time>
<time datetime="17:00">
5pm
</time>
</td>
<td>Study for other courses</td>
</tr>
<tr>
<td rowspan="2">All Other Times</td>
<td>Free Time</td>
</tr>
<tr>
<td>Sleep</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">And that's what I do every day, 5 days a week. Just eat, sleep, 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="Kansas">KS</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="Caribbean Beach" title="I want to visit a Caribbean Beach." width="400" height="225" loading="lazy">
<figcaption>
Caribbean Beach Getaway
</figcaption>
</figure>
</li>
<!--&&good performance technique&&
*loading tag set to lazy* helps the page to load faster as it commands the browser to not to download all the image files at once but only do that later when the user is nearing the part of the webpage where the image exists...Basically one by one depending upon where the user is scrolling on the webpage at the moment
-->
<li><p>I've heard good things about going here:</p>
<address>
Margaritaville Island Reserve Riviera Cancun<br>
Bahia Petempich Puerto Morelos,
Mexico<br>
Colonia Morelos, Mexico 77580
</address>
<figure>
<img src="img/vacation.jpg" alt="Cancun Vacation" title="It's 5 o'clock Somewhere!" width="400" height="267" loading="lazy">
<figcaption>
A Caribbean Vacation Image
</figcaption>
</figure>
</li>
</ul>
</section>
<section>
<!-- TODO: Add more places -->
<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>
</main>
<hr>
<footer>
<p>
<<<© <a href="about.html">Kanishk Bhani</a> >>>
</p>
<p>
<a href="#">Back to Top</a>
</p>
</footer>
</body>
</html>