-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (42 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Extremophile</title>
<link rel="icon" href="images/logo.png" type="image/ico" />
<link rel="stylesheet" href="StyleSheet.css" type="text/css" />
<meta charset="UTF-8">
<meta name="description" content="Extreme sport store.">
<meta name="keywords" content="Sports, Extreme, Snowboarding, Downhill biking, Skateboarding">
<meta name="author" content="Dustin Busmer">
</head>
<body>
<main>
<header>
<h1>Extremophile</h1>
</header>
<nav>
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="Snowboarding.html">Snowboarding</a></li>
<li><a href="DownhillBiking.html">Downhill Biking</a></li>
<li><a href="AboutUs.html">About Us</a></li>
<li style="float:right"><a href="Contact.html">Contact</a></li> <!-- Used inline styling to keep the contact right and everything else left -->
</ul>
</nav>
<section>
<img src="images/SnowboardingSmall.jpg" class="indeximg" alt="Snowbarding" style="width:400px;height:300px;">
<h2>We've got you covered!</h2>
<p id="indexp1">Whether you're flying down the mountain on four wheels, two wheels or no wheels at all, our team of extremophiles have got you covered.<br>
With all the latest gear and trends on hand you can be sure that we will have what you need at a great price, and if we don't, we'll get it.
<br>
<br>
So come on down and check out our gear for yourself, you won't be dissapointed.</p>
<img src="images/MountainbikeGear.jpg" class="indeximg" alt="Mountainbike Gear">
<br>
</section>
</main>
<footer>
<p>Copyright © 2019 Extremophile. All rights reserved.</p>
</footer>
</body>
</html>