-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.62 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
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>West Coast Adventures::Home</title>
<meta charset="utf-8">
<!--Meta tag scales the web page for readability, use of css will be required for
additional, optimal mobile styling-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="wca101.css">
<!--[if lt IE 9]>
<script src="html5shiv.js"></script>
<![endif]-->
</head>
<body>
<!--Begin centering the web page at 80% width-->
<div id="container">
<!--Header of web page - displays logo image-->
<header>
<h1 class="header">West Coast Adventures 101</h1>
</header>
<!--Navigation area-->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="attractions.html">Attractions</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="reservations.html">Reservations</a></li>
</ul>
</nav>
<!--Main Content-->
<main>
<h2>Welcome To West Coast Adventures 101</h2>
<img class="floatright" src="images/delNorteBeach.jpg" width="228" height="320" alt="Del Norte Beach">
<h4>Ready to go on a road trip adventure?</h4>
<p>
<span class="adventure">West Coast Adventures 101</span> specializes in adventures and exploration of the
West Coast of the United States. The three states that comprise this marvelous corner of the world offer
many gifts for anyone willing to go out and explore, and the best way to do it is with a road trip.
<p>
Here at <span class="adventure">West Coast Adventures 101</span> we have comprehensive knowledge of the many attractions
and activities that the coast has to offer. Our concierge service allows any would-be adventure/explorer the ability to
enjoy one of best places on Earth without all the work of planning it out. So, sit back, relax and let one of our expert
planners tailor your trip along this beautiful coast. We guarantee you’ll come back, again and again.
</p>
</main>
<!--Footer Area-->
<footer class="clear">
<!--Navigation area for the footer-->
<a href="index.html">Home</a>
|
<a href="services.html">Services</a>
|
<a href="attractions.html">Attractions</a>
|
<a href="activities.html">Activities</a>
|
<a href="reservations.html">Reservations</a>
<br><br>
Copyright © 2015 West Coast Adventures 101
<a href="mailto:[email protected]">[email protected]</a>
</footer>
</div>
<!--End centering the web page-->
</body>
</html>