- Notifications
You must be signed in to change notification settings - Fork 27.3k
/
Copy pathfetch-start.html
59 lines (48 loc) · 1.09 KB
/
fetch-start.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
<!DOCTYPE html>
<htmllang="en-US">
<head>
<metacharset="utf-8" />
<metaname="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fetch starting point</title>
<style>
html,
pre {
font-family: sans-serif;
}
body {
width:500px;
margin:0 auto;
background-color:#ccc;
}
pre {
line-height:1.5;
letter-spacing:0.05rem;
padding:1rem;
background-color: white;
}
label {
width:200px;
margin-right:33px;
}
select {
width:350px;
padding:5px;
}
</style>
</head>
<body>
<h1>Fetch starting point</h1>
<form>
<labelfor="verse-choose">Choose a verse</label>
<selectid="verse-choose" name="verse-choose">
<option>Verse 1</option>
<option>Verse 2</option>
<option>Verse 3</option>
<option>Verse 4</option>
</select>
</form>
<h2>The Conqueror Worm, <em>Edgar Allen Poe, 1843</em></h2>
<pre></pre>
<script></script>
</body>
</html>