-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskirentals.html
68 lines (67 loc) · 2.76 KB
/
skirentals.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
<!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>Ski Rentals</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>Ski Rentals</h1>
<p>Renting skiis? You're in the right place!</p>
</div>
</div>
<div id="wrapper">
<div id="content1">
<!--Main Content.-->
<div class="innercontent">
<!--Links to rental booking page.-->
<img src="./images/skiis.jpg" alt="skiis" class="contentimg">
<p>AlpineKo offers a comprehensive assortment of skiis suited for a wide variety ages, skill-levels and
styles of skiing. If you would like to rent skiing equipment, click the button
below to be taken to our rental booking page where you can reserve your
equipment now!</p>
<p><a href="rentalbooking.html" class="myButton">Rent now!</a></p>
<!--Return link to rentals page-->
<p>Not what you were looking for?<br><a href="rentals.html" class="myButton">Back to rentals.</a></p>
</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>