-
Notifications
You must be signed in to change notification settings - Fork 0
/
authors.html
91 lines (62 loc) · 2.32 KB
/
authors.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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/bookClubMain.css" />
<link rel="stylesheet" type="text/css" href="css/authors.css" />
<script src="javascript/bookClubJS.js" type="text/javascript"></script>
<script src="javascript/authors.js" type="text/javascript"></script>
<title>The Bee Book Club</title>
</head>
<body>
<div id='container'>
<div id='header'>
<img src="images/logo1.jpg" alt = "The Book Club Logo" width = "100" height = "100"/>
<h1 id='headertext'> The Bee Book Club</h1>
<div id='search-box'>
<div class="searchbox">
<input type="text" name="search" /><input type="submit" value="Search" />
</div>
</div>
</div>
<div id='nav'>
<ul id="navmenu">
<li><a href="index.html"> Home </a></li>
<li><a href="authors.html"> Meet The Authors </a></li>
<li><a href="reviews.html"> Reviews </a></li>
<li><a href="events.html"> Book Events </a></li>
<li><a href="contest.html"> Short Story Contest </a></li>
<li><a href="join.html"> Join the Club </a></li>
<li><a href="contact.html"> Contact Us </a></li>
</ul>
</div>
<div id='content'>
<h1 id="contentheader"> Meet the authors </h1>
<div id="leftCol">
<p class='headr'>Author Q & A </p>
<select name="tubeList" size="1" onchange="getYouTube(this);">
<option value="_">Sebastian Faulks</option>
<option value="_">Peter Carey</option>
<option value="_">Colm Tobin</option>
<option value="_">Ian McEwan</option>
</select>
</div>
<div id='middleCol'>
</div>
<div id="rightCol">
<p class='headr'> Podcasts </p>
<select name="podlist" size="1" onchange="getPod(this);">
<option value="_">Paul Theroux</option>
<option value="_">Michael Palin</option>
<option value="_">James Christie</option>
<option value="_">Constance Briscoe</option>
</select>
</div>
</div>
<div id='footer'>
<p>© 2012 The Bee Book Club. All rights reserved</p>
</div>
</div> <!-- container -->
</body>
</html>