-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirstpage.html
73 lines (54 loc) · 1.04 KB
/
firstpage.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
<!doctype html>
<html>
<head>
<title> My first website </title>
<link rel="stylesheet" type ="text/css" href ="style.css">
</head>
<body>
<h1> My web page! </h1>
<p> Hello world, welcome to my website! </p>
<br>
<br>
<h2> HAHAHAH </h2>
<!-- This is cool -->
<p> Hi there! </p>
<h1> Table Exercise </h1>
<table border="1">
<tr>
<th>Airport Code</th>
<th>Common Name/City</th>
</tr>
<h1> CHANGE 1 </h1>
<h1> CHANGE 2 </h1>
<h1> CHANGE 3 </h1>
<tr>
<td>CWA</td>
<td> Central Wisconsin Airport</td>
</tr>
<tr>
<td>ORD</td>
<td>Chicago O'Hare</td>
</tr>
<tr>
<td>LHR</td>
<td>London Heathrow</td>
</tr>
</table>
<p>Here's a link to <a href="http://www.google.com" target = "_blank"> google</a></p>
<h1> CSS Test </h1>
<div class = "boldText addBorder" > This is my web page. </div>
<div>
This is the <span style = "font-style: italic;">nicest</span> page I've made yet.
</div>
<ul>
<li>Pine</li>
<li>Oak</li>
<li>Elm</li>
<ul>
<br>
<br>
<br>
<h1> Image Test </h1>
<p> <img src = "binhandthinh.jpg" alt ="brothers"> </p>
</body>
</html>