-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
67 lines (59 loc) · 2.54 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> The Blue Preservers | About</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!--Header-->
<header id="main-header">
<div class="container">
<div id="branding">
<h1><span class="highlight">The </span>Blue Preservers</h1>
</div>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a> </li>
<li class="current"><a href="about.html">About</a> </li>
<li><a href="services.html">Services</a> </li>
<li><a href="contact.html">contact</a> </li>
</ul>
</nav>
</div>
</header>
<!--Section-->
<section id="newsletter">
<div class="container">
<h1>Subscribe To Our Monthly Newsletter</h1>
<form>
<input type="email" placeholder="Enter Email">
<button type="submit" class="button_1">Subscribe Here</button>
</form>
</div>
</section>
</div>
</section>
<section id="main">
<div class="container">
<article id="main-col">
<h1 class="page-title"> About Us</h1>
<p> The Blue Preservers is an initiative of the National Association of Marine Geoscience Students (NAMGS) 2019/2020 Executives</p>
<p class="dark">It aims at providing an out of lecture hall oppurtunities for students to learn about Oceanography, also to educate the community about the ocean</p>
</article>
<aside id="sidebar">
<div class="dark">
<h3>What We Do</h3>
<p>We organise swimming competions, swimming training, seminars on oceanography, go on field trips. And so much more.</p>
</div>
</aside>
</div>
</section>
<!--Footer-->
<footer>
<p>The Blue Preservers, Copyright © 2020</p>
</footer>
</body>
</html>