-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.02 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brunch Schedule</title>
<link rel="icon" href="utensils-solid.svg">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.0/css/all.min.css">
</script>
</head>
<body>
<div class="dark-mode-toggle">
<button onclick="toggleMode()">
<i id="toggle-icon" class="fas"></i>
</button>
</div>
<div class="container">
<h1>Upcoming Events</h1>
<div class="masked-overflow">
<ul id="events-list"></ul>
</div>
</div>
<div class="container">
<h1>Calendar</h1>
<iframe
class="raised"
id="calendar"
style="border: 0"
frameborder="0"
scrolling="no">
</iframe>
</div>
<script src="script.js"></script>
</body>
</html>