-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path358b-word-counts.html
More file actions
59 lines (59 loc) · 1.38 KB
/
358b-word-counts.html
File metadata and controls
59 lines (59 loc) · 1.38 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
<html>
<h2>Word counts of Melville's markings in each book of </h2>
<body>
<table border="2">
<tr>
<th>Section</th>
<th>Word Count</th>
<tr>
<td>Paradise Lost</td>
<td>6696</td>
</tr>
<tr>
<td>Paradise Regained</td>
<td>1483</td>
</tr>
<tr>
<td>The Verse</td>
<td>0</td>
</tr>
<tr>
<td>Samson Agonistes</td>
<td>985</td>
</tr>
<tr>
<td>Comus</td>
<td>1143</td>
</tr>
<tr>
<td>Lycidas</td>
<td>262</td>
</tr>
<tr>
<td>Life of Milton</td>
<td>0</td>
</tr>
<tr>
<td>Complimentary Verses</td>
<td>0</td>
</tr>
<tr>
<td>Il Penseroso</td>
<td>56</td>
</tr>
<tr>
<td>L'Allegro</td>
<td>51</td>
</tr>
<tr>
<td>Misc. Poems</td>
<td>77</td>
</tr>
<tr>
<td>Sonnets</td>
<td>64</td>
</tr>
</tr>
</table>
</body>
</html>