-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (23 loc) · 832 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fun Quote Generator</title>
<link rel="stylesheet" href="app.css">
</head>
<body>
<div class="container">
<div class="title"></div>
<div class="quote_container">
<div class="quote_text">Need a pick me up? Click the button and get an encouraging quote.</div>
<div class="quote_author"></div>
</div>
<button class="button" onclick="generateQuote()">
<span class="button-content">Generate </span>
</button>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>