-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
131 lines (122 loc) · 2.27 KB
/
table.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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<meta name="author" content="Mark Boulton Design" />
<meta name="description" content="UCL Homepage" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0" />
<title>UCL Design Language</title>
<link href="./css/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
<script src="./js/jquery.js"></script>
<script src="./js/ucl.js"></script>
<!--[if IE]><link href="./css/ie.css" rel="stylesheet" /><![endif]-->
<!--[if lt IE 8]><link href="./css/ie-old.css" rel="stylesheet" /><![endif]-->
<!--[if lte IE 8]><script src="./js/html5.js"></script><![endif]-->
</head>
<body id="table-view"><table>
<caption>The Very Best Eggnog</caption>
<colgroup>
<col style="width:15em;">
<col style="width:6em;">
<col style="width:6em;">
<col style="width:6em;">
<col style="width:6em;">
</colgroup>
<thead>
<tr>
<th scope="col">Ingredients</th>
<th scope="col">Serves 12</th>
<th scope="col">Serves 24</th>
<th scope="col">Serves 24</th>
<th scope="col">Serves 12</th>
</tr>
</thead>
<tbody>
<tr>
<td>Milk</td>
<td>1 quart</td>
<td>2 quart</td>
<td>2 quart</td>
<td>1 quart</td>
</tr>
<tr>
<td>Cinnamon Sticks</td>
<td>2</td>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>Vanilla Bean, Split</td>
<td>1</td>
<td>2</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>Cloves</td>
<td>5</td>
<td>10</td>
<td>10</td>
<td>5</td>
</tr>
<tr>
<td>Mace</td>
<td>10 blades</td>
<td>20 blades</td>
<td>20 blades</td>
<td>10 blades</td>
</tr>
<tr>
<td>Egg Yolks</td>
<td>12</td>
<td>24</td>
<td>24</td>
<td>12</td>
</tr>
<tr>
<td>Cups Sugar</td>
<td>1 ½ cups</td>
<td>3 cups</td>
<td>3 cups</td>
<td>1 ½ cups</td>
</tr>
<tr>
<td>Dark Rum</td>
<td>1 ½ cups</td>
<td>3 cups</td>
<td>3 cups</td>
<td>1 ½ cups</td>
</tr>
<tr>
<td>Brandy</td>
<td>1 ½ cups</td>
<td>3 cups</td>
<td>3 cups</td>
<td>1 ½ cups</td>
</tr>
<tr>
<td>Vanilla</td>
<td>1 tbsp</td>
<td>2 tbsp</td>
<td>2 tbsp</td>
<td>1 tbsp</td>
</tr>
<tr>
<td>Half-and-half or Light Cream</td>
<td>1 quart</td>
<td>2 quart</td>
<td>2 quart</td>
<td>1 quart</td>
</tr>
<tr>
<td>Freshly grated nutmeg to taste</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</body>
</html>