-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
63 lines (55 loc) · 1.3 KB
/
table.html
File metadata and controls
63 lines (55 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Aguillar Family Wine Festival</title>
<link rel="stylesheet" type="text/css" href="reset.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
</head>
<body>
<header>
<h1>Annual Aguillar Family Wine Festival</h1>
</header>
<div class="container">
<table>
<thead>
<tr>
<th colspan="2">Wine Festival Schedule</th>
</tr>
<tr>
<th>Time</th>
<th>Event</th>
</tr>
</thead>
<tbody>
<tr>
<td class="left">12:00 PM</td>
<td>Welcome Reception</td>
</tr>
<tr>
<td class="left">01:00 PM</td>
<td>Storytelling & Tasting</td>
</tr>
<tr>
<td class="left">02:00 PM</td>
<td>W ine Luncheon</td>
</tr>
<tr>
<td class="left">03:00 PM</td>
<td>Aguillar Family Wines</td>
</tr>
<tr>
<td class="left">04:00 PM</td>
<td>Wine & Cheese Tasting</td>
</tr>
</tbody>
</table>
</div>
<footer>
<h3>Contact</h3>
<h3>Location</h3>
<h3>Privacy Policy</h3>
</footer>
</body>
</html>