-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquoteGenerator.html
More file actions
33 lines (30 loc) · 1.18 KB
/
Copy pathquoteGenerator.html
File metadata and controls
33 lines (30 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quote Generator</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<div class="navbar">
<ul class="navul">
<li class="navlist"><a href="first.html">HomePage</a></li>
<li class="navlist"><a href="todo.html">To-Do List</a></li>
<li class="navlist"><a href="weather.html">Weather</a></li>
<li class="navlist"><a href="calc.html">Calculator</a></li>
<li class="navlist"><a href="clock.html">Digital Clock</a></li>
<li class="navlist"><a href="quoteGenerator.html">Quote Generator</a></li>
</ul>
</div>
<div class="about">
<h2>RANDOM QUOTE GENERATOR</h2>
<p>used JS to generate new quotes whenever we click the generate quote button</p>
</div>
<div id="generateQuote">
<p id="content">"Believe in yourself and all that you are."</p>
<button class="genQuote" onclick="generateQuote()">Generate Quote</button>
</div>
<script src="script.js"></script>
</body>
</html>