-
Notifications
You must be signed in to change notification settings - Fork 1
/
gallery.html
46 lines (46 loc) · 1.45 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Delta Sigma Pi</title>
<!-- Google font link -->
<link
href="https://fonts.googleapis.com/css?family=Roboto+Slab"
rel="stylesheet"
/>
<!-- Bootstrap is a framework for styling that I use a
bit probably idk tbh I haven't started but I'm guessing I'll use it! -->
<link
rel="stylesheet"
type="text/css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
/>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<header>
<nav>
<div><h1></h1></div>
<div class="div-with-links">
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="recruitment.html">Recruitment</a></li>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="brothers.html">Brothers</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</header>
<body>
<div class="position-gallery">
<h2>Coming Soon</h2>
<h3>
Please check our
<a class="fb" href="https://www.facebook.com/NEUDSP/">Facebook</a> or
<a class="insta" href="https://www.instagram.com/neudsp/">Instagram</a> in the meantime.
</h3>
</div>
</body>
</html>