-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tables1.html
91 lines (88 loc) · 1.39 KB
/
Tables1.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
<!DOCTYPE>
<html>
<head>
<style>
td{
padding:.5em;
}
tr{
font-family:sans-serif;
font-size:28px;}
th {
background-color:black;
color:white;
}
caption {
background-color:lightgrey;
font-weight:bold;
}
tr:nth-of-type(odd){
background-color:lightgrey;
}
table,td,th{border-bottom:1px solid #ddd;
border-left:1px solid #ddd;
border-right:1px solid #ddd;
border-collapse:collapse;
text-align:center;}
</style>
<title>
Table 1
</title>
</head>
<body>
<table>
<caption>Table Exercise 1</caption>
<tr>
<th rowspan="2">School Name</th>
<th colspan="2">Years</th>
<th rowspan="2">Degree Awarded</th>
</tr>
<tr>
<th>Start</th>
<th>End</th>
</tr>
<tr>
<td>Kenneth Davis Elementary</td>
<td>2001</td>
<td>2002</td>
<td></td>
</tr>
<tr>
<td>Roberta Tipps Elementary </td>
<td>2002</td>
<td>2005</td>
<td>Elementary</td>
</tr>
<tr>
<td>Mary Orr Intermidate</td>
<td>2005</td>
<td>2007</td>
<td>Intermidate</td>
</tr>
<tr>
<td>Wester Middle School</td>
<td>2007</td>
<td>2009</td>
<td>Middle</td>
</tr>
<tr>
<td>Mansfield High School</td>
<td>2009</td>
<td>2013</td>
<td>Graduate</td>
</tr>
<tr>
<td>Universtiy of Oklahoma</td>
<td>2013</td>
<td>2014</td>
<td></td>
</tr>
<tr>
<td>University of Texas at Arlington</td>
<td>2015</td>
<td>2018</td>
<td>Commnication Degree</td>
</tr>
</table>
</body>
</html>