-
Notifications
You must be signed in to change notification settings - Fork 0
/
ta_ex1.html
88 lines (88 loc) · 2.12 KB
/
ta_ex1.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
<!DOCTYPE html>
<html>
<title> Tim's Webpage <.title>
<head>
<title>My Web Page</title>
</head>
<body>
<h1 style="
background-color: green;
color: white;
text-align: center;
padding: 20px;
border-style: solid;
border-width: 10px;
border-color: orange;
">Welcome to My Page!</h1>
<h2>My name is Bob.</h2>
<h3>I hope you like it here.</h3>
<p>This is my paragraph.</p>
<p><font color="blue">Whales are majestic creatures.</font></p>
<b>Bold text</b>
<i>Italic text</i>
<u>Underlined text</u>
<sub>Subscript text</sub>
<sup>Superscript text</sup>
<br>
<img src="http://www.cuhk.edu.hk/chinese/images/cuhk_logo_2x.png?20150907"></img>
<br>
<a href="http://www.cuhk.edu.hk">This is the link to CUHK's website</a>.
<hr>
<ol>
<li>apples</li>
<li>oranges</li>
<li>pineapples</li>
<li>mangoes</li>
<li>dragonfruit</li>
</ol>
<hr>
<ul>
<li>apples
<ul>
<li>golden delicious</li>
<li>granny smith</li>
<li>gala</li>
</ul>
</li>
<li>oranges</li>
<li>pineapples</li>
<li>mangoes</li>
<li>dragonfruit</li>
</ul>
<hr>
<table border=1>
<tr>
<th>Month</th>
<th>Rent</th>
<th>Utilities</th>
<th>Groceries</th>
<th>Eating Out</th>
<th>Entertainment</th>
</tr>
<tr>
<td>August</td>
<td>$1500</td>
<td>$150</td>
<td>$350</td>
<td>$100</td>
<td>$50</td>
</tr>
<tr>
<td>Row1 - 1st element</td>
<td>Row1 - 2st element</td>
<td>Row1 - 3st element</td>
<td>Row1 - 4st element</td>
<td>Row1 - 5st element</td>
<td>Row1 - 6st element</td>
</tr>
<tr>
<td>Row2 - 1st element</td>
<td>Row2 - 2st element</td>
<td>Row2 - 3st element</td>
<td>Row2 - 4st element</td>
<td>Row2 - 5st element</td>
<td>Row2 - 6st element</td>
</tr>
</table>
</body>
</html>