-
Notifications
You must be signed in to change notification settings - Fork 0
/
mental.html
54 lines (51 loc) · 1.63 KB
/
mental.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="quote.css">
<script src="mentalhealthQuotes.js" defer></script>
<title>MentalhealthQuotes</title>
</head>
<body>
<main id="main">
<header>
<div class="back">
<a href="index.html"><span>←</span></a>
</div>
<button id="open-menu" class="hamburger">
<span class="bar"></span>
<span class="bar1"></span>
<span class="bar2"></span>
</button>
</header>
<nav id="display-nav-bar">
<a id="exit">×</a>
<ul>
<li><a href="index.html">Quotes</a></li>
<li><a href="">Jokes</a></li>
<li><a href="">Riddles</a></li>
<li><a href="">Poems</a></li>
<li><a href="">Random</a></li>
</ul>
<hr>
<ul class="toggle">
<li class="dark-mode">Dark mode
<span>
<form>
<input onclick="toggle(this.form)" id="checkbox" name="checkbox" type="checkbox" /><label for="checkbox">Toggle</label>
</form>
</span>
</li>
</ul>
</nav>
<section id="quote">
<q id="display">
</q>
<br>
</section>
<a href="#" id="next">Next</a>
</main>
</body>
</html>