-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathluncheons.html
91 lines (72 loc) · 1.92 KB
/
luncheons.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>
<html>
<head>
<meta charset="utf-8">
<title>Luncheons</title>
</head>
<body>
<h1>About Our Luncheons</h1>
<p>Make reservations for lunch in the lower lobby of the William Saroyan Theater after each lecture. These informal sessions provide an excellent opportunity to talk with the speaker.</p>
<dl>
<dt>Season luncheon tickets: $120</dt>
<dd>These tickets can be ordered at the same time as the season lecture ticket.</dd>
<dt>Individual luncheon tickets: $25</dt>
<dd>A limited number of these tickets are available and can be purchased by calling 559.555.1212. These tickets must be purchased by the Friday prior to the lecture.</dd>
</dl>
<h2>The luncheon schedule</h2>
<table border="1" cellpadding="12" cellspacing="4">
<!-- Date Speaker Price -->
<tr>
<th colspan="3">2014</th>
</tr>
<tr>
<td>October 19</td>
<td>Jeffrey Toobin</td>
<td>$25</td>
</tr>
<tr>
<td>November 16</td>
<td>Andress Ross Sorkin</td>
<td>$25</td>
</tr>
<tr>
<th colspan="3">2015</th>
</tr>
<tr>
<td>January 18</td>
<td>Amy Chua</td>
<td>$25</td>
</tr>
<tr>
<td>February 16</td>
<td>Scott Sampson</td>
<td>$25</td>
</tr>
<tr>
<td>March 21</td>
<td>Carlos Eire</td>
<td>$25</td>
</tr>
<tr>
<td>April 18</td>
<td>Ronan Tynan</td>
<td>$25</td>
</tr>
</table>
<br>
<table border="2" cellspacing="2" cellpadding="15">
<tr>
<td>Cost of 6 individual luncheon tickets</td>
<td>$150</td>
</tr>
<tr>
<td>Cost of a season luncheon ticket</td>
<td>$120</td>
</tr>
<tr>
<td>Savings</td>
<td>$30</td>
</tr>
</table>
</body>
</html>