-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
80 lines (78 loc) · 4.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>CampSpots</title>
<link rel="stylesheet" type="text/css" href="./styles.scss" />
</head>
<body class="page-home">
<include src="_includes/header.html"></include>
<div id="main">
<form class="main-search form-wrap layout" id="home-form">
<div class="form-field">
<span class="label">Where to?</span>
<div class="custom-input">
<span class="icon-lookingglass"></span>
<input type="text" id="place-search" placeholder="Try Oregon, Colorado..." />
</div>
</div>
<div class="form-field">
<span class="label">Dates</span>
<div class="custom-input">
<span class="icon-calendar"></span>
<input type="text" id="date-search" placeholder="Enter dates" />
</div>
</div>
<div class="form-field form-submit">
<div class="btn-submit btn-lookingglass" onclick="javascript: alert('Submitted!');">
<span class="icon-lookingglass-white"></span>
</div>
</div>
</form>
<div class="wide-layout two-part-overlap">
<div class="content-block-wrap">
<img src="images/tents.jpg">
<div class="content-block">
<h3>Rest and relaxation is a part of life</h3>
<div>We know you need a break. Get out of town, or stay and play. Taking rest and time away from the daily grind of life is essential for maintaining balance and positive well-being.</div>
<div>At CampSpots, we can help connect you to your next adventure. Create memories you’ll remember fondly well into the future.</div>
<div>By researching places, accomodations, and activities that match your lifestyle, you can have the time of your life.</div>
</div>
</div>
<div class="link-block">
<h4>Places to visit</h4>
<div class="link-list">
<div>
<a href="#">New York</a>
<a href="#">Texas</a>
<a href="#">Utah</a>
</div>
<div>
<a href="#">Oregon</a>
<a href="#">Alaska</a>
<a href="#">Hawaii</a>
</div>
</div>
</div>
</div>
<div class="layout three-parts">
<div class="item green">
<img src="/images/icons/icon-treetag.svg" />
<div class="header">Find your next adventure</div>
<div>Vel rutrum est pharetra. Suspendisse eu mattis mi. Mauris vitae ornare urna, et ornare felis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>
</div>
<div class="item yellow">
<img src="/images/icons/icon-backpack.svg" />
<div class="header">Know what to pack and what to leave at home</div>
<div>Vel rutrum est pharetra. Suspendisse eu mattis mi. Mauris vitae ornare urna, et ornare felis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>
</div>
<div class="item blue">
<img src="/images/icons/icon-kayak.svg" />
<div class="header">Arrange the best activities</div>
<div>Vel rutrum est pharetra. Suspendisse eu mattis mi. Mauris vitae ornare urna, et ornare felis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>
</div>
</div>
</div>
<include src="_includes/footer.html"></include>
<script src="/js/menu.js"></script>
</body>
</html>