-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChapter2.html
40 lines (40 loc) · 979 Bytes
/
Chapter2.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
<!DOCTYPE html>
<html>
<head>
<title>jQuery Tutorial Chapter 1</title>
<link rel="stylesheet" href="Chapter2.css" type="text/css">
<script type="text/javascript" src="jquery-1.6.2.js"></script>
<script type="text/javascript" src="Chapter2.js"></script>
</head>
<body>
<ul id="selected-plays">
<li>Comedies
<ul>
<li><a href="/asyoulikeit/">As you like it</a></li>
<li>All's well that ends well!</li>
<li>A midsummer night's dream</li>
<li>Twelfth night</li>
</ul>
</li>
<li>Tragedies
<ul>
<li><a href="hamlet.pdf">Hamlet</a></li>
<li>Macbeth</li>
<li>Romeo and Juliette</li>
</ul>
</li>
<li>Histories
<ul>
<li>Henry IV (<a href="mailto:[email protected]">email</a>)
<ul>
<li>Part I</li>
<li>Part II</li>
</ul>
</li>
<li><a href="http://www.shakespeare.co.uk/henryv.htm">Henry V</a></li>
<li>Richard II</li>
</ul>
</li>
</ul>
</body>
</html>