-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (86 loc) · 2.22 KB
/
Copy pathindex.html
File metadata and controls
97 lines (86 loc) · 2.22 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="index.js" defer></script>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<center>
<div class="alert" style = "display:none">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
Click white background for the next quote.
</div>
<div class="preload">
<div class="emoji">🕐</div>
</div>
<!-- <div id="loader" class="center"></div> -->
<div id="card" class="card">
<div id="quote-card-frame" class="quote-card-frame">
<!-- class quoteDivCard -->
</div>
<div id="buttons" class="buttons">
<button class='pencil'>📝</button>
<button class='empty-heart' className = "heart">♡</button>
<!-- <button class="trash">🗑</button> -->
</div>
<div class="container" style = "display:none" >
<form class="add-quote-form">
<input
style="height:150px;
width:70%;
font-size:12pt;"
type="text"
name="content"
value=""
placeholder="Enter a quote..."
class="input-text"
/>
<br />
<input
style="
width:70%;
font-size:12pt;"
type="text"
name="author"
value=""
placeholder="Author(optional)"
class="input-text"
/>
<br />
<!--
<input
type="text"
name="image"
value=""
placeholder="Enter a quote's image URL..."
class="input-text"
/>
<br />
<input
type="text"
name="category"
value=""
placeholder="Optional: Enter category..."
class="input-text"
/>
<br /> -->
<input
style="
width:70%;
font-size:12pt;"
type="submit"
name="submit"
value="save"
class="submit"
/>
<br />
<br>
</form>
</div>
</div>
</center>
</body>
</html>