-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (43 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>Beautiful Things</title>
</head>
<body>
<h1><strong>Beautiful Things</strong></h1>
<img src="urban_m.jpg" height="400" width="300">
<p>Welcome to my site</p>
<p>This is a <strong>website</strong>.</p>
<p>This is not a <strong>bicycle</strong>.</p>
<p>If this were a bicycle, it would be a very stupid bicycle.</p>
<p>If you want a bicycle, you should go <a href="http://www.racepacebicycles.com" title="Race Pace Bicycles Homepage" target="blank">somewhere else</a>.</p>
<!-- This is a note -->
<ul>
<li>Stuff</li>
<li>More Stuff</li>
<li>Other Stuff</li>
<li>Other Stuff</li>
</ul>
<ol>
<li>It's stuff</li>
<li>And other stuff</li>
<ul>
<li>but not this list</li>
<li>some other stuff</li>
</ul>
</ol>
<table>
<tr>
<th>First</th>
<th>Second</th>
<th>Third</th>
</tr>
<tr>
<td><img src="baltimore.jpg"></td>
</td>
<td><img src="waters.jpg"></td>
<td><img src="urban_m.jpg" height="400" width="300"></td>
</tr>
</table>
</body>
</html>