-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (116 loc) · 3.28 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
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
<!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/FPC MUN Logo.jpg" />
<title>FPC Model UN</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 MUN Logo.jpg" alt="FPC MUN Logo" />
<h4 class="logo">FPC Model UN</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="/meetings/">Meetings</a>
</li>
<li>
<a class="nav-link" id="officers" href="/conferences/">Conferences</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('/join/')" value="Join" />
</li>
<li>
<input type="button" onclick="redirect('/sign-in/')" value="Sign In" />
</li>
</ul>
</header>
<main>
<h1>We are Model United Nations</h1>
<section id="basic-description">
<div class="text">
<h2>What does that mean?</h2>
<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:[email protected]" 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>