-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Cinzel&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Quintessential&display=swap" rel="stylesheet">
<title>Random Quote Generator</title>
<h1>Random Quote Generator</h1>
</head>
<body>
<p id="description">This quote generator will generate random motivational and success quotes by selecting parts of a sentence and joining them together. Have a go!</p>
<div class="container">
<select id="generator">
<option value="1">Generator 1</option>
<option value="2">Generator 2</option>
</select>
<select id="quotenumber">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<div class="buttons">
<button id="btn" class="genbtn">Generate</button>
<button id="quitbtn" class="genbtn">Quit</button>
</div>
</div>
<div id="sentence"></div>
<script type="text/javascript" src="script.js"></script>
</body>