-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTable.html
More file actions
103 lines (87 loc) · 2.55 KB
/
Table.html
File metadata and controls
103 lines (87 loc) · 2.55 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Favourite things</title>
</head>
<style>
th, td {border:1px solid black;}
</style>
<body>
<h1> Table of people's favourite things:</h1>
<table style="width:50%; height: 50%">
<tr>
<th>Name</th>
<th>Pokemon</th>
<th>Height</th>
<th>Film</th>
<th>Burger</th>
</tr>
<tr>
<td>Keelan</td>
<td>Snorlax</td>
<td>who knows</td>
<td>Into the spiderverse</td>
<td>Cheese</td>
</tr>
<tr>
<td>Oscar</td>
<td>magmanite</td>
<td>200</td>
<td>flat land</td>
<td>the normal one</td>
</tr>
<tr>
<td>jacques</td>
<td>sprigatito</td>
<td>5.10</td>
<td>jurrasic world evo 2</td>
<td>Grand big mac</td>
</tr>
<tr>
<td>dylan</td>
<td>umbreon</td>
<td>178</td>
<td>red 2</td>
<td>plants</td>
</tr>
<tr>
<td>calum</td>
<td>torterra</td>
<td>172</td>
<td>spiderverse</td>
<td>crispy chicekn</td>
</tr>
<tr>
<td>harry</td>
<td>meowcatthing</td>
<td>87</td>
<td>sonic</td>
<td>big mac with all other free things you can add to it</td>
</tr>
<tr>
<td>L</td>
<td>Silveon</td>
<td>5,5</td>
<td>Evil dead 2</td>
<td>The spicy one</td>
</tr>
<tr>
<td>haydn</td>
<td>Zorua</td>
<td>178</td>
<td>real steel</td>
<td>Big tasty</td>
</tr>
<tr>
<td>cohen</td>
<td>Diglet</td>
<td>180</td>
<td>Blade Runner 2049</td>
<td>The bacon one</td>
</tr>
</table>
</body>
</html>