forked from Thinkful-Ed/starter-thinkfulbnb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
172 lines (155 loc) · 5.37 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Vacation Rentals & Unique Homes</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
rel="stylesheet"
type="text/css"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Pangolin&family=Lato&display=swap"
rel="stylesheet"
/>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<div class="logo">
<img src="images/logo.svg" id='logoimg'>
Thinkfulbnb
</div>
<nav id ='menu'>
<a href=#stay>Stay</a>
<a href=#about>About</a>
<a href=#ideas>Ideas</a>
<a href=#host>Host</a>
</nav>
</header>
<main>
<div id='spacer'></div>
<!-- Stay -->
<section id="stay">
<h2>Find your perfect <br> vacation rental.</h2>
<!-- Create a form here -->
<form>
<div id='form-element'>
<label for='location'>
<span class="material-icons">room</span>
Location:</label>
<input type="text" name='location' placeholder='Search Destination'/>
</div>
<div id='form-element'>
<label for="start">
<span class="material-icons">flight_takeoff</span>
Arrive:</label>
<input type="date" id="start" name="start"
value="today" min="today" max="2028-12-31">
</div>
<div id='form-element'>
<label for="end">
<span class="material-icons">flight_land</span>
Depart:</label>
<input type="date" id="start" name="end"
value="today" min="today" max="2028-12-31">
</div>
<div id='form-element'>
<label for="type">
<span class="material-icons">maps_home_work</span>
Type:</label>
<select name="types" size="1">
<option value="Forest-Retreat">Forest Retreat</option>
<option value="Beachfront">Beachfront</option>
<option value="Cabin">Cabins</option>
<option value="Pet-friendly">Pet-friendly</option>
</select>
</div>
</form>
<button for='submit'>
<span class="material-icons">travel_explore</span>
Search</button>
</section>
<!-- About -->
<section id="about" class="alternate-background">
<h2>About</h2>
<div class='desktop-container'>
<img
src="images/vacation-rental-pool.png"
alt="Thinkfulbnb - Vacation rental pool"
/>
<img
src="images/vacation-rental-inside-stone.png"
alt="Thinkfulbnb - Vacation rental inside stone"
/>
<p>
Fusce porta odio nunc, eget pretium massa rutrum sit amet. Etiam
fringilla aliquam dapibus. Maecenas quis nisi sed turpis aliquam
porttitor eget ut quam. Sed vel scelerisque ex. Duis in pharetra
neque, at tempus lorem. Aenean mi magna, posuere at quam sed, euismod
gravida neque.
</p>
</div>
</section>
<!-- Ideas -->
<section id="ideas">
<h2>Ideas</h2>
<div class='desktop-container1'>
<div class='img-w-header'>
<h3>Forest retreats</h3>
<img
src="images/forest-retreat.png"
alt="Thinkfulbnb - Forest retreat"
class='idea'
/>
</div>
<div class='img-w-header'>
<h3>Beaches</h3>
<img src="images/beach-house.png" alt="Thinkfulbnb - Beach house" class='idea'/>
</div>
<div class='img-w-header'>
<h3>Rustic cabins</h3>
<img src="images/cabin.png" alt="Thinkfulbnb - Cabin" class='idea' />
</div>
<div class='img-w-header'>
<h3>Pet-friendly</h3>
<img src="images/pet-friendly.png" alt="Thinkfulbnb - Pet-friendly" class='idea' />
</div>
</div>
</section>
<!-- Host -->
<section id="host" class="alternate-background">
<div class='halfscreen'>
<h2>Become a <br>Thinkfulbnb Host.</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus
molestie in est id efficitur. Sed hendrerit ut turpis quis dapibus.
Nam sit amet iaculis lectus. Aliquam erat volutpat. Praesent rhoncus
pellentesque eros in aliquet. Sed accumsan elit lacus, id ultrices
libero rutrum vitae.
</p>
<ul>
<li>Mauris in pellentesque ligula.</li>
<li>Sed accumsan elit lacus, id ultrices libero rutrum vitae.</li>
<li>Nunc vitae ex eget neque pellentesque porttitor.</li>
<li>Cras mollis lorem sagittis sapien imperdiet blandit. Vivamus.</li>
<li>
Donec vehicula ipsum nisi, eu consectetur leo feugiat et. Fusce eget
hendrerit mauris.
</li>
</ul>
</div>
<div class='halfscreen'>
<img src="images/become-a-host.png" alt="Thinkfulbnb - Become a host" class='idea'/>
</div>
</section>
</main>
<footer>
<p>© Thinkful 2021</p>
</footer>
</body>
</html>