-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (53 loc) · 2.03 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Random Quote Machine</title>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<body>
<div class="container">
<header>Sentence Maker</header>
<div class="interface">
<div id="happy_sad" class="row">
<div class="icons">
<i data-face="happy" class="far fa-smile"></i>
<i data-face="random" class="far fas fa-dice"></i>
<i data-face="sad" class="far fa-sad-tear"></i>
</div>
</div>
<div id="qty" class="row">
<div class="btn-group">
<button class="button btn-normal-color">1</button>
<button class="button btn-normal-color">2</button>
<button class="button btn-normal-color">3</button>
<button class="button btn-normal-color">4</button>
<button class="button btn-normal-color">5</button>
</div>
</div>
</div>
<div id="results-container" class="row">
<ol id="results"></ol>
</div>
<div class="no_face_error">
<p>Please pick an icon above to select the type of sentence generated. </p>
</div>
<div class="no_qty_error">
<p>Please pick a number above to select the number of sentences generated. </p>
</div>
<div class="submit-button">
<button class="submit">Get quotes</button>
</div>
<div class="exit-button-container">
<button class="exit-button">Exit</button>
</div>
</div>
<div class="exit-message">
<h2>Thank you for using my quote generator!</h2>
<button class="go-back-button">Go back</button>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="script.js"></script>
</html>