-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 1.41 KB
/
index.html
File metadata and controls
47 lines (47 loc) · 1.41 KB
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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<h1>Places I've Lived</h1>
<section>// description 1</section>
<ul>
<li>Wichita, KS <span>Home</span></li>
<li>Dayton, OH <span>PCS</span></li>
<li>Colorado Springs, CO <span>College</span></li>
<li>Los Angeles, CA <span>PCS</span></li>
</ul>
<h1>Top Cities I Want to Visit</h1>
<section>// description 2</section>
<ol>
<li><strong>NYC, NY (again)</strong></li>
<li><em>Temecula, CA</em></li>
<li><strong>Wichita, KS</strong></li>
</ol>
<img class="fit-picture"
src="https://interactive-examples.mdn.mozilla.net/media/cc0-images/grapefruit-slice-332-332.jpg"
alt="Grapefruit slice atop a pile of other slices">
<table>
<thead>
<tr>
<th>Header content 1</th>
<th>Header content 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Body content 1</td>
<td>Body content 2</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Footer content 1</td>
<td>Footer content 2</td>
</tr>
</tfoot>
</table>
</body>
<a href="favorites.html">Favorites</a>
</html>