-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewing.html
46 lines (37 loc) · 1.14 KB
/
viewing.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
<html>
<head>
<title>Viewing book</title>
<style>
body.all #recent { display: none}
body.recent #all { display: none}
section { background: #ffd; margin: 4px; border: 1px solid #dda; padding: 4px; }
</style>
</head>
<body id="body" class="recent">
<h1><a href="home.html">Recommender system</a></h1>
<h1>Books Shared with Me</h1>
<label><input type="radio" name="tab" checked="checked" id="radio1" onclick="document.getElementById('body').className = 'recent'">Recent</label>
<label><input type="radio" name="tab" onclick="document.getElementById('body').className = 'all'">All</label>
<section id="recent">
This is the recent shares.
<table border=1 cellpadding=4>
<tr>
<td><a href="summary.html">Warriors</a></td>
<td>11:00am</td>
</tr>
</table>
</section>
<section id="all">
<table border=1 cellpadding=4>
<tr>
<td><a href="summary.html">Warriors</a></td>
<td>11:00am</td>
</tr>
<tr>
<td><a href="summarypercyjackson.html">Percy Jackson</a></td>
<td>9:00am</td>
</tr>
</table>
</section>
</body>
</html>