-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (151 loc) · 3.55 KB
/
index.html
File metadata and controls
163 lines (151 loc) · 3.55 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="shortcut icon"
type="image/x-icon"
href="/Images/Assets/lower theta.ico"
/>
<title>FPC Mu Alpha Theta</title>
<!-- keep this title convention please-->
<link rel="stylesheet" href="/Includes/CSS/main.css" />
<link rel="stylesheet" href="/Includes/CSS/menu.css" />
<link rel="stylesheet" href="/Includes/CSS/footer.css" />
<link
href="https://fonts.googleapis.com/css?family=Comfortaa&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<div class="logo-container">
<a href="/">
<img
src="/Images/Assets/FPC MAO Light Logo.png"
alt="FPC MAO Logo"
/>
<h4 class="logo">FPC MAO</h4>
</a>
</div>
<nav>
<ul class="nav-links">
<li>
<a class="nav-link" id="home" href="/">Home</a>
</li>
<li>
<a class="nav-link" id="about" href="/about/">About</a>
</li>
<li>
<a class="nav-link" id="officers" href="/resources/"
>Resources</a
>
</li>
<li>
<a class="nav-link" id="officers" href="/tutoring/"
>Tutoring</a
>
</li>
<li>
<a class="nav-link" id="officers" href="/updates/"
>Updates</a
>
</li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<ul class="buttons">
<li>
<input
type="button"
onclick="redirect('/sign-in/')"
value="Sign-in"
/>
</li>
</ul>
</header>
<main>
<h1>We are Mu Alpha Theta</h1>
<section id="basic-description">
<h2>What does that mean?</h2>
<div class="text">
<ul>
<li>
<p>
Model UN is a simulation of the UN General
Assembly or other multilateral body. We attend
conferences where we serve as ambassadors to
address real-world issues by working with other
delegates.
</p>
<p>
This is a place to strengthen your voice in
public speaking while learning about the world,
all while making great friends in a quirky
environment!
</p>
</li>
</ul>
</div>
</section>
<section id="join-today">
<h2>Join Today</h2>
<div class="text">
<ul>
<li>
<p>
Before you can attend meetings, you need to fill
out a form to let us know a little bit about
yourself.
</p>
<p>
Click the button below to go there.
</p>
<div class="link">
<input
type="button"
onclick="redirect('/join/')"
value="Join"
/>
</div>
</li>
</ul>
</div>
</section>
</main>
<footer>
<div class="footer-logo">
<a href="https://www.fpccode.com"
><img
src="/Images/Assets/fpc_code_trademark_light.svg"
alt="FPC Code Logo"
/></a>
</div>
<p>
This website is powered by FPC Code
</p>
<div class="footer-contacts">
<a href="https://github.com/codefpc" target="_blank">
<img
src="/Images/Assets/github-brands.svg"
alt="Github Icon"
/>
</a>
<a href="mailto:fpc.coding.club@gmail.com" target="_blank">
<img
src="/Images/Assets/envelope-solid.svg"
alt="Mail Icon"
/>
</a>
</div>
</footer>
<script src="/Includes/JS/main.js"></script>
<script src="/Includes/JS/menu.js"></script>
</body>
</html>