-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
163 lines (157 loc) · 4.27 KB
/
index.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width initial-scale=1.0" />
<!-- <link rel="stylesheet" href="css/style.css" /> -->
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<!--
<div id="content-container">
<p>hello</p>
<button id="generate-poem">Press me!</button>
<button id="test">test</button>
<div id="display-poem-container"><pre id="display-poem"></pre></div>
</div>
-->
<div id="content-container">
<div id="title-card-container">
<div id="title-card">Poema<span class="little-a">a</span></div>
</div>
<div id="keywords-container">
<div id="keywords">
<button
type="button"
class="keywords-btn"
id="key1"
data-value=""
data-active="false"
data-index=""
>
1
</button>
<button
type="button"
class="keywords-btn"
id="key2"
data-value=""
data-active="false"
data-index=""
>
2
</button>
<button
type="button"
class="keywords-btn"
id="key3"
data-value=""
data-active="false"
data-index=""
>
3
</button>
<button
type="button"
class="keywords-btn"
id="key4"
data-value=""
data-active="false"
data-index=""
>
4
</button>
<button
type="button"
class="keywords-btn"
id="key5"
data-value=""
data-active="false"
data-index=""
>
5
</button>
<button
type="button"
class="keywords-btn"
id="key6"
data-value=""
data-active="false"
data-index=""
>
6
</button>
<button
type="button"
class="keywords-btn"
id="key7"
data-value=""
data-active="false"
data-index=""
>
7
</button>
<button
type="button"
class="keywords-btn"
id="key8"
data-value=""
data-active="false"
data-index=""
>
8
</button>
<button
type="button "
class="keywords-btn"
id="key9"
data-value=""
data-active="false"
data-index=""
>
9
</button>
</div>
<!-- Timer Button -->
<div class="timer-btn-meter-container">
<div class="progress-bar-outer"></div>
<div class="progress-bar progress-bar-submit-btn">
<div class="inner">
<button type="button" id="submit-btn" disabled>></button>
</div>
</div>
</div>
</div>
<div id="display-poem-container">
<!-- Donwload Button -->
<div id="download-btn-container">
<button type="button" id="download-btn">
<img src="./images/download.png" />
</button>
</div>
<!-- Poem Content -->
<div id="display-poem-content-container">
<pre id="display-poem"></pre>
</div>
<!-- Author and Title -->
<div id="title-author-container">
<p id="title"></p>
<p id="author"></p>
</div>
<!-- Reset Button -->
<div class="reset-btn-meter-container">
<div class="progress-bar-outer"></div>
<div class="progress-bar progress-bar-reset-btn">
<div class="inner inner-reset-btn">
<button type="button" id="inner-btn-reset" disabled><</button>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.6.4.js"></script>
<script type="text/javascript" src="./js/poems.js"></script>
<script type="text/javascript" src="./js/themes.js"></script>
<script type="text/javascript" src="./js/script.js"></script>
</html>