-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
68 lines (59 loc) · 2.75 KB
/
test.html
File metadata and controls
68 lines (59 loc) · 2.75 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
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html id ="haiku">
<head>
<title>Web Haiku Drafter | Shadow's Den</title>
<link rel="stylesheet" href="pantoumStyle.css">
</head>
<body>
<header>
<h1>Web Haiku Drafter</h1>
</header>
<div class = "stanza-background-container">
<div class = "explainer">
<div>
<h2>What is a Haiku?</h2>
<p><i>
A Haiku is a traditional form of Japanese poetry consisting of three lines.
It is known for its brevity and concise nature.
The format of a Haiku typically follows a specific structure:
the first line contains five syllables,
the second line contains seven syllables,
and the third line contains five syllables again, for a total of 17.
The concise structure and precise language of a Haiku allow for a powerful expression within a limited space.
</i> </p>
</div>
<div>
<h2>So how does this help?</h2>
<p><i>
In order to keep the poet honest, this website provides live syllable counting.
You may also choose to change words to their synonym if that would be a better fit!
</i> </p>
</div>
</div>
<div class = "stanza" id = "stanza">
<input placeholder="5 introductory syllables here"
type = "text"
class = "line"
onchange="UpdateEndwords"></input><br>
<input placeholder="7 syllables here"
type = "text"
class = "line"
onchange="UpdateEndwords"
></input><br>
<input placeholder="5 dramatic syllables here"
type = "text"
onchange="UpdateEndwords"
class = "line"></input><br>
</div>
<div class = "button-holder">
<button class = "generateButton"> Copy Poem! </button>
<br><br>
<div class = "button-holder">
<textarea placeholder = "Copy from here" readonly id = "EditArea"> </textarea>
</div>
</div>
</div>
<script defer src = "bundle.js">
</script>
</body>
</html>