-
Notifications
You must be signed in to change notification settings - Fork 3
/
join.html
64 lines (60 loc) · 2.23 KB
/
join.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script
src="https://kit.fontawesome.com/2d323a629b.js"
crossorigin="anonymous">
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/tailwind_style.css">
<link rel="stylesheet" href="css/style.css">
<title>Join | QC@UCI</title>
</head>
<p style="margin-bottom:200px;"></p>
<body>
<header class="header">
<a href="index.html">
<img src="image/navy_anteater_bloch.png" width="150" alt="Home">
</a>
<nav>
<ul class="header__nav">
<li><a href="index.html">Home</a></li>
<li><a href="join.html">Join</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="event.html">Events</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact_us.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="team__title">Get Involved!</div>
<section class="join__body">
<div class="text-container">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeZtyYb8oV3nUPXUksd5ULrCTAcWEbtvGW-8aNxpvVj6ZAcEw/viewform" class="button-link email">Sign Up</a>
</div>
<div class="text-container">
<a href="https://discord.gg/NMdhsk3UYQ" class="button-link discord">Discord</a>
</div>
<div class="text-container">
<a href="https://www.instagram.com/qcatuci/" class="button-link instagram">Instagram</a>
</div>
<!--
<div class="text-container">
<a href="https://calendar.google.com/calendar/u/2?cid=Y192Y2ZhcjJqM3JtYThqZXJxc3JncTFnZThzOEBncm91cC5jYWxlbmRhci5nb29nbGUuY29t" class="button-link calendar">Calendar</a>
</div>
-->
<div class="text-container">
<a href="https://github.com/QC-UCI" class="button-link github">GitHub</a>
</div>
</section>
<footer>
<div class="footer__copyRight">
<p><a href="./contact_us.html">Copyright © 2024 Quantum Computing @ UCI. All Rights Reserved. </a></p>
</div>
</footer>
</body>
</html>