-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
148 lines (114 loc) · 2.43 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Document</title>
</head>
<body style="background-color: bisque;">
<H1>TABLE NO 1</H1>
<table border="5px" width="500" >
<tr>
<th>NO.</th>
<th>FULL NAME</th>
<th>POSITION</th>
<th>SALARY</th>
</tr>
<tr>
<th>1</th>
<th>Khurram</th>
<th>Founder Microsoft</th>
<th>100000</th>
</tr>
<tr>
<th>2</th>
<th>Asad</th>
<th>Founder Apple</th>
<th>90000</th>
</tr>
<tr>
<th>3</th>
<th>Maryam</th>
<th>Founder Google</th>
<th>80000</th>
</tr>
<tr>
<th>4</th>
<th>Abdul Hadi</th>
<th>Founder Facebook</th>
<th>70000</th>
</table>
<h1>TABLE NO 2</h1>
<table border="5px" width="500" >
<tr>
<th>ID</th>
<th>NAME</th>
<th>SUBJECT</th>
<th>MARKS</th>
</tr>
<tr>
<th rowspan="3">1</th>
<th rowspan="3">David</th>
<th>Maths</th>
<th>80</th>
</tr>
<tr>
<th>Physics</th>
<th>90</tr>
</tr>
<tr>
<th>Computers</th>
<th>70</th>
</tr>
<tr>
<th rowspan="3">2</th>
<th rowspan="3">Alex</th>
<th>Maths</th>
<th>80</th>
</tr>
<tr>
<th>Physics</th>
<th>70</tr>
</tr>
<tr>
<th>Computers</th>
<th>90</th>
</tr>
</table>
<h1>TABLE NO 3</h1>
<table border="5px" width="500" >
<tr>
<th colspan="6">Athletics day time table</th>
</tr>
<tr>
<th>Area</th>
<th>10am-11am</th>
<th>11am-12pm</th>
<th>12pm-1pm</th>
<th>1pm-2pm</th>
<th>1pm-3pm</th>
</tr>
<tr>
<th rowspan="2">Track</th>
<th>400m</th>
<th>200m</th>
<th rowspan="3">Lunch</th>
<th>800m</th>
<th>100m</th>
</tr>
<tr>
<th>Hurdles</th>
<th>1500m</th>
<th>Free</th>
<th>80m</th>
</tr>
<tr>
<th>Feilds</th>
<th>Discus</th>
<th>Javelin</th>
<th>Shot put</th>
<th>Hammer throw</th>
</tr>
</table>
</body>
</html>