-
-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.13 KB
/
index.html
File metadata and controls
47 lines (46 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quote Generator App</title>
<style>
body {
display: grid;
place-items: center;
min-height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
text-align: center;
margin-top: 40px;
background-color: aqua;
}
h1 {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: green;
}
#quote {
font-size: 45px;
margin-bottom: 10px;
color: purple;
}
#author {
font-size: 30px;
color: red;
margin-bottom: 10px;
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
#new-quote {
padding: 10px 20px;
font-size: 16px;
}
</style>
<script defer src="quotes.js"></script>
</head>
<body>
<h1>Welcome to the Quote Generator</h1>
<p id="quote"></p>
<p id="author"></p>
<button type="button" id="new-quote">New quote</button>
</body>
</html>