-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (67 loc) · 3.13 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
<!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 | Welcome</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 class="current"><a href="index.html">Home</a> </li>
<li><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="showcase">
<div class="container">
<h1>Oceanography Club</h1>
<p> The purpose of the club is to provide a network <br> for students with a strong interest in Oceanography,<br> and to provide a platform for students <br>to learn about the largest feature on earth.<br> By providing a forum for students <br>to discuss, debate,socialize and perform community services.</p>
</div>
</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>
<section id="boxes">
<div class="container">
<div class="box">
<img src="./images/swimlogo.png">
<h3>Swimming Club</h3>
<p>The blue preservers host swimming competitions and also our top life savers and professional swimmers train those interested in swimming</p>
</div>
<div class="box">
<img src="./images/fieldtrip logo.png">
<h3>Field Trip</h3>
<p>Get to visit professionals in the field, learn new things, get interships</p>
</div>
<div class="box">
<img src="./images/classes.png">
<h3>Seminars, Conferences,Research and Expo</h3>
<p>Exposes students to lectures from the field,Enough resources and equipment for researches, also students get the oppurtunity to showcase their ideas for a better earth.</p>
</div>
</div>
</section>
<!--Footer-->
<footer>
<p>The Blue Preservers, Copyright © 2020</p>
</footer>
</body>
</html>