-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutUs.html
More file actions
113 lines (95 loc) · 2.81 KB
/
AboutUs.html
File metadata and controls
113 lines (95 loc) · 2.81 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About Us</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, Opening hours">
<meta name="author" content="Dustin Busmer">
</head>
<body>
<main>
<header>
<h1>About Us</h1>
</header>
<nav>
<ul>
<li><a 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 class="active" href="AboutUs.html">About Us</a></li>
<li style="float:right"><a href="Contact.html">Contact</a></li>
</ul>
</nav>
<br>
<br>
<br>
<table class="center">
<tr>
<th>Operating Hours:</th>
<th>Open</th>
<th>Close</th>
</tr>
<tr>
<td>Monday</td>
<td>9am</td>
<td>6pm</td>
</tr>
<tr>
<td>Tuesday</td>
<td>9am</td>
<td>6pm</td>
</tr>
<tr>
<td>Wednesday</td>
<td>9am</td>
<td>6pm</td>
</tr>
<tr>
<td>Thursday</td>
<td>9am</td>
<td>6pm</td>
</tr>
<tr>
<td>Friday</td>
<td>9am</td>
<td>9pm</td>
</tr>
<tr>
<td>Saturday</td>
<td>10am</td>
<td>3pm</td>
</tr>
<tr>
<td>Sunday</td>
<td>10am</td>
<td>3pm</td>
</tr>
<tr>
<td>Public Holidays</td>
<td>Closed</td>
<td>Closed</td>
</tr>
</table>
<article id="owner">
<br>
<h2 id="ownerHead">About the owner</h2>
<p>Originally opened in 1986 by Ian Grochevki as a simple bike store he quickly realised the potential for growth into the ever popular snow sports genre<br>
and grew to be the biggest seller of bike and snow gear within his first 2 years of operation.<br>
<br>
In the summer of 2008 the store he was located in was burnt to ashes under suspicious circumstances. With a plan to expand into the world of Extreme sports he quickly reopened under the new name "Extremophile<sup>1</sup>". <br>
Since then the store has quickly become one of the biggest suppliers of all things extreme<br>
including but not limited to, skateboarding, downhill mountainbiking, base jumping gear and of course all the winter gear you'll need to stay warm and enjoy the slopes.</p>
<aside>
<h2 id="theFire">The fire</h2>
<p>Although the police could never prove anything it is believed the fire that burned down Ian Grochevki's first store was started by a local gang that was hired by a nearby competitor.</p>
</aside>
</article>
</main>
<footer>
<p>Copyright © 2019 Extremophile. All rights reserved.</p> <p id="extremophile"><sup>1</sup>An extremophile is an organism that thrives in extreme environments.</p>
</footer>
</body>
</html>