-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.48 KB
/
Copy pathindex.html
File metadata and controls
39 lines (39 loc) · 1.48 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
<html>
<head>
<title>Html-exercise!</title>
</head>
<body>
<h1>Html exercise!</h1>
<div>
<h3>Cities I've lived in</h3>
<div>
<p>I've visited all of these cities while on a tour of the united states, or some other sample reason.</p>
<ul>
<li>SampleTown USA<span> :reason A</span></li>
<li>Atlantis<span> :Reason B, but with some more text to see how it interacts with other elements</span></li>
<li>That one creepy motel... you know the one.<span>: Reason C, with a little less text</span></li>
</ul>
</div>
<h3>Cities I want to go to</h3>
<div>
<p>I want to visit these cities, because, as Marge Simpson says -- "I just think they're neat"</p>
<ol>
<li><strong>Boston</strong></li>
<li><em>Antonio</em></li>
<li><strong>Toronto</strong></li>
</ol>
</div>
</div>
<h2>Wiiiiide fruit</h2>
<div>
<img src="https://interactive-examples.mdn.mozilla.net/media/cc0-images/grapefruit-slice-332-332.jpg"
alt="The image you told me to put in here"
height="200"
width="400">
</div>
<h3>Links!</h3>
<div>
<a href="favorites.html">Favorites Page</a>
</div>
</body>
</html>