-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 823 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (23 loc) · 823 Bytes
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
<html>
<head>
<link rel="stylesheet" href="index.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<title>BoredBot</title>
</head>
<body>
<main>
<div class="container">
<h1>🤖 BoredBot 🤖</h1>
<h4>Get something to do</h4>
<button id="get-activity" aria-label="Find a new activity">Get Activity!</button>
<div id="activity-container">
<div id="activity-name">Click the button to get a random activity!</div>
</div>
</div>
</main>
<script src="index.js"></script>
</body>
</html>