-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
254 lines (254 loc) · 11 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plants</title>
<link rel="icon" href="assets/favicon-logo.ico">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inika:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="container">
<div class="logo-wrapper">
<img src="assets/icons/logo.svg" alt="Logo">
<span class="logo-title">Plants</span>
</div>
<nav class="nav">
<div class="hamb hamb__field" id="hamb">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="nav-list" id="nav-list">
<li class="nav-item"><a href="#home" class="nav-link current-link">Home</a></li>
<li class="nav-item"><a href="#about" class="nav-link">About us</a></li>
<li class="nav-item"><a href="#service" class="nav-link">Service</a></li>
<li class="nav-item"><a href="#prices" class="nav-link">Price</a></li>
<li class="nav-item"><a href="#contacts" class="nav-link">Contacts</a></li>
</ul>
</nav>
<div class="popup" id="popup"></div>
</div>
</header>
<main class="main">
<section class="home-section section" id="home">
<div class="container">
<img src="assets/images/leafs.png" alt="" class="leaves-img">
<div class="home-text-box">
<h1>We grow <span class="green-text">plants</span> and give you oxygen</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<button class="main-btn">LEARN MORE</button>
</div>
</div>
</section>
<section class="about-section section" id="about">
<div class="container">
<div class="about-text-box">
<h2 class="about-title"><span class="green-text">We are</span> professional<br>experienced <span class="green-text">gardeners</span></h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
</div>
<img src="assets/images/houseplant.png" alt="Home plant" class="home-plant">
</div>
</section>
<section class="service-section section" id="service">
<div class="container">
<div class="service-title-box">
<h2 class="service-title green-text">Service and our projects</h2>
<div class="service-btn-box">
<button class="servise-btn btn">Gardens</button>
<button class="servise-btn btn">Lawn</button>
<button class="servise-btn btn">Planting</button>
</div>
</div>
<div class="service-box-wrapper">
<div class="service-box">
<div class="service-box-img serv-img-1"></div>
<div class="serv-box-info">
<h3 class="service-box-title">Garden care</h3>
<span class="service-box-text">Lorem Ipsum has been the industry</span>
</div>
</div>
<div class="service-box">
<div class="service-box-img serv-img-2"></div>
<div class="serv-box-info">
<h3 class="service-box-title">Planting</h3>
<span class="service-box-text">Lorem Ipsum has been the industry</span>
</div>
</div>
<div class="service-box">
<div class="service-box-img serv-img-3"></div>
<div class="serv-box-info">
<h3 class="service-box-title">Lawn care </h3>
<span class="service-box-text">Lorem Ipsum has been the industry</span>
</div>
</div>
<div class="service-box">
<div class="service-box-img serv-img-4"></div>
<div class="serv-box-info">
<h3 class="service-box-title">Planting</h3>
<span class="service-box-text">Lorem Ipsum has been the industry</span>
</div>
</div>
<div class="service-box">
<div class="service-box-img serv-img-5"></div>
<div class="serv-box-info">
<h3 class="service-box-title">Garden care</h3>
<span class="service-box-text">Lorem Ipsum has been the industry</span>
</div>
</div>
<div class="service-box">
<div class="service-box-img serv-img-6"></div>
<div class="serv-box-info">
<h3 class="service-box-title">Planting</h3>
<span class="service-box-text">Lorem Ipsum has been the industry</span>
</div>
</div>
</div>
</div>
</section>
<section class="prices-section section" id="prices">
<div class="container">
<div class="prices-box">
<h2 class="prices-title">Prices</h2>
<div class="prices-wrapper" id="prices-wrapper">
<div class="prices-option">
<div class="label">
Basics
<div class="price-toggle"></div>
</div>
<div class="content">
<hr>
<p class="price-desc">Release of Letraset sheets containing Lorem Ipsum passages, and more recently</p>
<div class="price-info">
<span class="dollar-sign">$</span>
<span class="price-amount">15</span>
<span class="price-period">/ per hour</span>
</div>
<a href="#contacts">
<button class="order-btn">Order</button>
</a>
</div>
</div>
<div class="prices-option">
<div class="label">
Standard
<div class="price-toggle"></div>
</div>
<div class="content">
<hr>
<p class="price-desc">Release of Letraset sheets containing Lorem Ipsum passages, and more recently</p>
<div class="price-info">
<span class="dollar-sign">$</span>
<span class="price-amount">25</span>
<span class="price-period">/ per hour</span>
</div>
<a href="#contacts">
<button class="order-btn">Order</button>
</a>
</div>
</div>
<div class="prices-option">
<div class="label">
Pro care
<div class="price-toggle"></div>
</div>
<div class="content">
<hr>
<p class="price-desc">Release of Letraset sheets containing Lorem Ipsum passages, and more recently</p>
<div class="price-info">
<span class="dollar-sign">$</span>
<span class="price-amount">35</span>
<span class="price-period">/ per hour</span>
</div>
<a href="#contacts">
<button class="order-btn" href="#contacts">Order</button>
</a>
</div>
</div>
</div>
</div>
<div class="prices-contact-box">
<span class="prices-subtitle">Our best <span class="green-text">gardeners</span> are ready to help you</span>
<button class="contact-btn">Contact us</button>
<img src="assets/images/leafs-small.png" alt="">
</div>
</div>
</section>
<section class="contacts-section section" id="contacts">
<div class="container">
<img src="assets/images/contact_woman.png" alt="" class="contact-img">
<div class="contact-wrapper">
<h2 class="contact-title">Contact us</h2>
<div class="custom-select">
<select class="contact-city" id="contact-city">
<option value="" selected disabled hidden>City</option>
<option value="1">Canandaigua, NY</option>
<option value="2">New York City</option>
<option value="3">Yonkers, NY</option>
<option value="4">Sherrill, NY</option>
</select>
</div>
<div class="city-card" id="city-card">
<div class="card-info">
<div class="card-label">City:</div>
<div class="card-data" id="city-name">Canandaigua, NY</div>
</div>
<div class="card-info">
<div class="card-label">Phone:</div>
<div class="card-data" id="city-phone">+1 585 393 0001</div>
</div>
<div class="card-info">
<div class="card-label">Office adress:</div>
<div class="card-data" id="city-adress">151 Charlotte Street</div>
</div>
<a href="" class="btn-to-call" id="btn-to-call">Call us</a>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="year">
<span>©</span>
<span>2022</span>
<a class="link" href="https://github.com/Viktoriia-code" target="_blank" rel="noopener noreferrer">
<span>github</span>
</a>
</div>
<div class="copy-right">
<a class="link" href="https://rs.school/js-stage0/" target="_blank" rel="noopener noreferrer">Rolling Scopes School</a></div>
<div class="social-links">
<ul class="social-list">
<li class="social-item">
<a href="https://github.com/Viktoriia-code" target="_blank" rel="noopener noreferrer">
<img class="social-img" src="assets/icons/inst.svg" alt="">
</a>
</li>
<li class="social-item">
<a href="https://github.com/Viktoriia-code" target="_blank" rel="noopener noreferrer">
<img class="social-img" src="assets/icons/facebook.svg" alt="">
</a>
</li>
<li class="social-item">
<a href="https://github.com/Viktoriia-code" target="_blank" rel="noopener noreferrer">
<img class="social-img" src="assets/icons/twiter.svg" alt="">
</a>
</li>
<li class="social-item">
<a href="https://github.com/Viktoriia-code" target="_blank" rel="noopener noreferrer">
<img class="social-img" src="assets/icons/pinterest.svg" alt="">
</a>
</li>
</ul>
</div>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>