-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (27 loc) · 1.11 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
<!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="icon" href="./assets/bored-yawn.png" type="image/png">
<link rel="stylesheet" href="./style.css">
<title>Bored?</title>
</head>
<body>
<div class="main-container">
<div class="container">
<h2>Bored?</h2>
<p>Say no more!!</p>
<p>Click the button below to find an activity</p>
<button class="glass-btn" id="glass-btn">Click me</button>
<div class="text-area" id="text-area"></div>
</div>
<div class="footer">
<h4><i class="fas fa-code"></i> with <i class="fas fa-heart"></i> by <a href="https://github.com/rohitjoshi6">Rohit Joshi</a></h4>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/js/all.min.js" integrity="sha256-qM7QTJSlvtPSxVRjVWNM2OfTAz/3k5ovHOKmKXuYMO4=" crossorigin="anonymous"></script>
<script src="./index.js"></script>
</body>
</html>