-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrentals.html
100 lines (97 loc) · 4.24 KB
/
rentals.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<meta charset="utf-8" />
<link href="./base.css" type="text/css" rel="stylesheet">
<title>Rentals - AlpineKo</title>
</head>
<body>
<div id="navbar">
<a href="index.html">
<img class="navlogo" src="./images/aklogo.png" alt="Logo">
</a>
<!--Contains navbar element.-->
<div id="innernav">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="lessons.html">LESSONS</a></li>
<li><a href="rentals.html">RENTALS</a></li>
<li><a href="tuneups.html">TUNE UPS</a></li>
<li><a href="aboutus.html">ABOUT US</a></li>
</ul>
</div>
<!--Link to login page.-->
<ul class="login">
<li><a href="login.html">LOGIN</a></li>
</ul>
</div>
<div id="banner">
<div class="innerbanner">
<!--Contains Header-->
<h1>Rentals</h1>
<p>Rentals for skiis, snowboards and more!</p>
</div>
</div>
<!--"Wrapper div, conatins all three columns.
(Ski, Snowboards, Accessories)-->
<div id="wrapper">
<div id="content1">
<!--Left-hand column-->
<div class="innercontent">
<a href="skirentals.html">
<img src="./images/skirental.jpg" alt="Ski rentals" class="contentimg">
</a>
<h2>Ski Rentals</h2>
<p>Looking to rent a pair of skiis? We've got you covered! Click below for more information on the wide variety of
skiing gear we have available to rent.</p>
<div class="button">
<p><a href="skirentals.html" class="myButton">More information</a></p>
</div>
</div>
</div>
<div id="content2">
<!--Middle column-->
<div class="innercontent">
<a href="snowboardrentals.html">
<img src="./images/boardrental.jpg" alt="Snowboard rentals" class="contentimg">
</a>
<h2>Snowboard Rentals</h2>
<p>Looking for snowboard rentals? Click below! There you'll find a wide variety
of rental boards and equipment to choose from.<br><br></p>
<div class="button">
<p><a href="snowboardrentals.html" class="myButton">More information</a></p>
</div>
</div>
</div>
<div id="content3">
<!--Right-hand column-->
<div class="innercontent">
<a href="accessories.html">
<img src="./images/accessoryrental.jpg" alt="Accessory Rentals" class="contentimg">
</a>
<h2>Accessory Rentals</h2>
<p>Looking for the essentials? We've got it all! From goggles and hemets, to clothing and more.
Click below to find a wide variety of supplementary gear for rent.</p>
<div class="button">
<p><a href="accessories.html" class="myButton">More information</a></p>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="innerfooter">
<ul class="footercontact">
<li>Phone: 604.555.3434</li>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Find Us on Facebook!</li>
<li>Twitter @alpineko</li>
</ul>
<p>Copyright Lucas Chan - Delan Elliot - Derek Hirotsu - Jim Ko - Daniel Park</p>
<p>All rights reserved</p>
<p><a href="./contact.html">Contact Us</a></p>
<p><a href="Sitemap.html">Site Map</a></p>
</div>
</div>
</body>
</html>