-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
86 lines (73 loc) · 2.75 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Font -->
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<meta charset="utf-8" />
<!-- Css -->
<link href="./base.css" type="text/css" rel="stylesheet">
<title>AlpineKo Ski and Board</title>
</head>
<body>
<!-- First Header -->
<div id="navbar">
<a href="index.html">
<img class="navlogo" src="./images/aklogo.png" alt="">
</a>
<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>
<ul class="login">
<li><a href="login.html">LOGIN</a></li>
</ul>
</div>
<!-- Banner -->
<div id="banner">
<div class="innerbanner">
<h1>Contact Us</h1>
<p>Are you trying to get in contact with us?</p>
</div>
</div>
<div id="wrapper">
<div id="content1">
<div class="innercontent">
<!-- Hello header -->
<h2>Hello!</h2>
<!-- contact us descriptions -->
<p> Are you trying to get in contact with us? If you are please try the information below!
<p>Phone: 604.555.3434</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Find Us on Facebook!</p>
<p>Twitter @alpineko</p>
<p><a href ="index.html" class="myButton"> Back to the homepage! </a> </p>
</div>
</div>
<div id="content2">
<div class="innercontent">
<a href="index.html"> <img src="./images/contact.jpg" class="contentimg" alt=""> </a>
</div>
</div>
</div>
<!-- Footer -->
<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>