-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (87 loc) · 3.99 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
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Солнечные батарейки Green Corp</title>
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<img class="header__logo" src="img/logo.svg">
<div class="header__controls">
<a href="#contacts">Контакты</a>
<button>Заказать</button>
</div>
</header>
<section class="about">
<div class="about__info animate__animated animate__fadeInLeft">
<h1>Солнечные панели Green Robotic</h1>
<p>Производите дешевую экологически чистую электроенергию из солнечного света</p>
<button>Узнать подробнее</button>
</div>
<div class="about__images animate__animated animate__fadeInRight">
<img class="about__sun" src="https://www.picng.com/upload/sun/png_sun_7645.png">
<img class="about__panel" src="https://pngimg.com/uploads/solar_panel/solar_panel_PNG126.png">
</div>
</section>
<section class="form">
<div class="form__container">
<div class="form__info">
<h1>Оставьте свои контакты</h1>
<p>
<br>Поможем подобрать модель.
<br>Выбрать удобный вариант доставки и установки.
<br>Гарантия возврата денег.
</p>
</div>
<form class="form__fields">
<div class="form__inputs">
<label for="name">Ваше имя</label>
<input id="name" type="text" placeholder="Enter a name..." >
<label for="email">Электронная почта</label>
<input id="email" type="email" placeholder="***@gmail.com" >
<label for="phone">Номер телефона</label>
<input id="phone" type="tel" placeholder="8-999-99-99" >
<label for="budget">Примерный бюджет</label>
<select id="budget" >
<option>Выберите вариант</option>
<option>100 - 200</option>
<option>200 - 400</option>
</select>
</div>
<button type="submit" class="form__submit">Отправить заявку</button>
</form>
</div>
</section>
<footer>
<div class="footer__container">
<div class="footer__group">
<h3>Позвонить нам:</h3>
<div class="footer__links">
<a href="tel:8-800-555-35-35">8-800-555-35-35</a>
</div>
</div>
<div class="footer__group">
<h3>Решения для дома:</h3>
<div class="footer__links">
<a href="#">Солнечные панели GreenRobotics</a>
<a href="#">Системы солнечных панелей GreenStation</a>
</div>
</div>
<div class="footer__group">
<h3>Компания:</h3>
<div class="footer__links">
<a href="#">Контакты</a>
<a href="#">Вакансии</a>
<a href="#">СМИ</a>
</div>
</div>
</div>
<div class="footer__copyright">
GreenCorp 2022
</div>
</footer>
</body>
</html>