-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcssclasschallenge3.html
46 lines (41 loc) · 1.26 KB
/
cssclasschallenge3.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Challenge: Descendants of Khan</title>
<style>
tr .emperor {background-color: rgb(218, 22, 22);
font-family: cursive;
}
.reign {
font-family: monospace;
}
</style>
</head>
<body>
<h1>Descendants of Khan</h1>
<p><strong class="emperor">Genghis Khan</strong> (<span class="reign">1206-1227</span>) was a emperor who had many sons and daughters, and many famous emperors are descended from him. (But not Sal Khan!)</p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Reign</th>
</tr>
</thead>
<tbody>
<tr>
<td class="emperor">Ögedei Khan</td>
<td class="reign">1229-1241</td>
</tr>
<tr class="kk">
<td class="emperor">Kublai Khan</td>
<td class="reign">1260-1294</td>
</tr>
<tr>
<td class="emperor">Temür Khan</td>
<td class="reign">1294-1307</td>
</tr>
</tbody>
</table>
</body>
</html>