-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (66 loc) · 2.37 KB
/
Copy pathindex.html
File metadata and controls
69 lines (66 loc) · 2.37 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
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
<!doctype html>
<html lang="en">
<head>
<title>Fun&Jokes</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles/style.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<div class="content-wrapper">
<div class="header">
<div class="logo">
<img src="./assets/clown.gif">
<h2>Fun&Jokes</h2>
</div>
<div class="category-selector">
<div class="dropdown">
<div class="select">
<span class="selected">
/ Dad Jokes
</span>
</div>
<ul class="menu">
<li class="active">/ Dad Jokes</li>
<li>/ Dark</li>
<li>/ Programming</li>
<li>/ Spooky</li>
<li>/ Chuck Norris</li>
</ul>
</div>
</div>
</div>
<div class="joke">
<h4 id="joke" class="joke-text"></h4>
</div>
<div class="actions">
<button id="refresh_btn">🎉 YAY!!</button>
<button id="share_btn">🔥 SHARE!</button>
</div>
<div class="api-link" id="api_link">
<a>Show API</a>
</div>
</div>
<div class="footer">
<span>👋 </span>
<a href="https://github.com/sonyafar" target="_blank">@sonya</a>
<a href="#" id="popup-btn" style="margin-left: 10px;">about</a>
</div>
<div id="popup" class="overlay">
<div class="popup">
<h2>About</h2>
<a class="close" id="close-btn">×</a>
<div class="content">
<p> Researchers in Japan and Norway have conducted studies that suggest laughter may lead to living a longer life.
</p>
<p style="padding-top: 20px;">
<a ref="/">Fun&Jokes</a> gives you the opportunity to become a longevity. Choose a category, choose a joke, and share it with your favorite friend. Become long-livers together!
</p>
</div>
</div>
</div>
<script src="./src/app.js"></script>
</body>
</html>