-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (93 loc) · 3.5 KB
/
index.html
File metadata and controls
109 lines (93 loc) · 3.5 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./res/css/style.css">
<script src="./res/js/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="icon" href="./res/img/Logo.png">
<title>Quarantine Social</title>
</head>
<body>
<header>
<h1 class="title center">Welcome to MVHS Quarantine Social!</h1>
<h4 class="center"><i>It's like an ice cream social but with coronavirus instead of ice cream</i></h4>
</header>
<div class="main">
<div class="content">
<p class="center">Unfortunately, the rise of COVID-19 has caused the school to shut down for the rest of the
school year, but you can join us here and enjoy some social interaction!</p>
</div>
<hr>
<p class="activities-title"><strong>Activities:</strong></p>
<div class="links-display flecs">
<div class="card">
<div class="links cooking">
<a href="./Cooking/index.html">
<p class="words">Cooking</p>
</a></div>
</div>
<div class="card spaced">
<div class="links workout">
<a href="./Workout/index.html">
<p class="words">Workout</p>
</a></div>
</div>
<div class="card spaced">
<div class="links gamenight">
<a href="./GameNight/index.html">
<p class="words">Game Night</p>
</a></div>
</div>
</div>
<br>
<div class="links-display flecs">
<div class="links talentshow"><a href="./Talentshow/index.html">
<p class="words">Talent Show</p>
</a></div>
</div>
<br>
<hr>
<br>
<div class="links-display flecs">
<div class="card2">
<div class="links signup"><a href="./Signup/index.html">
<p class="words">Signup</p>
</a></div>
</div>
<div class="card2">
<div class="links about"><a href="./About/index.html">
<p class="words">About</p>
</a></div>
</div>
</div>
<br>
<hr>
<br>
<div class="links-display flecs">
<div class="card2">
<div class="links archives"><a href="./Archive/index.html">
<p class="words">Archives</p>
</a></div>
</div>
<div class="card2">
<div class="links contact"><a href="./Contact/index.html">
<p class="words">Contact the Devs</p>
</a></div>
</div>
</div>
</div>
<footer class="footer">
<div class="content">
<button class="covid-button">Santa Clara County COVID-19 Updates</button>
</div>
<br>
<div class="buttons">
<button id="1" class="footer-links">MVHS 2023
Instagram</button>
<button id="2" class="footer-links">MVHS Oracle
Instagram</button>
</div>
</footer>
<script src="./res/js/script.js"></script>
</body>
</html>