forked from urfu-2017/webdev-task-4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (123 loc) · 6.45 KB
/
index.html
File metadata and controls
123 lines (123 loc) · 6.45 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Задача «Тим слишком занят»</title>
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/solid.css"
integrity="sha384-v2Tw72dyUXeU3y4aM2Y0tBJQkGfplr39mxZqlTBDUZAb9BGoC40+rdFCG0m10lXk"
crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/fontawesome.css"
integrity="sha384-q3jl8XQu1OpdLgGFvNRnPdj5VIlCvgsDQTQB6owSOHWlAurxul7f+JpUOVdAiJ5P"
crossorigin="anonymous">
<script src="./index.js"></script>
</head>
<body>
<main>
<header class="header">
<h1 class="header__title">Билли.Маркет</h1>
<label class="header__menu-icon" for="menu">
<i class="fas fa-bars"></i>
</label>
<div class="search">
<input class="search__field" type="text" name="search" id="search">
<label class="search__icon" for="search">
<i class="fas fa-search"></i>
</label>
<button class="search__button">Найти</button>
</div>
</header>
<input class="menu-control" type="checkbox" name="menu" id="menu">
<section class="products">
<nav class="products__nav nav">
<label class="nav__control" for="menu"><i class="fas fa-times"></i></label>
<a class="nav__link link" href="#">Морские ракушки</a>
<a class="nav__link link" href="#">Сувениры из Тайланда</a>
<a class="nav__link link" href="#">Автомобили Тесла</a>
<a class="nav__link link" href="#">Марки из разных стран</a>
<a class="nav__link link" href="#">Заказать сувенир</a>
</nav>
<section class="products__gallery">
<article class="product">
<img class="product__image" src="./public/images/img.png" alt="img">
<h3 class="product__name"><a class="link" href="#">Ракушка морское дно</a></h3>
<strong class="product__price">290</strong>
<div class="product__rewiev">
<div class="rewiev-stars rewiev-stars_mark_good">4.0</div>
<div class="rewiev-count">111 отзывов</div>
</div>
</article>
<article class="product">
<img class="product__image" src="./public/images/img.png" alt="img">
<h3 class="product__name"><a class="link" href="#">Термокружка "Батарейка"</a></h3>
<strong class="product__price">404</strong>
<div class="product__rewiev">
<div class="rewiev-stars rewiev-stars_mark_very-good">4.5</div>
<div class="rewiev-count">290 отзывов</div>
</div>
</article>
<article class="product">
<img class="product__image" src="./public/images/img.png" alt="img">
<h3 class="product__name"><a class="link" href="#">Автомобиль Тесла</a></h3>
<strong class="product__price">359900</strong>
<div class="product__rewiev">
<div class="rewiev-stars rewiev-stars_mark_very-good">4.5</div>
<div class="rewiev-count">1 отзыв</div>
</div>
</article>
<article class="product">
<img class="product__image" src="./public/images/img.png" alt="img">
<h3 class="product__name"><a class="link" href="#">Чесалка для спины</a></h3>
<strong class="product__price">195</strong>
<div class="product__rewiev">
<div class="rewiev-stars rewiev-stars_mark_good">4.0</div>
<div class="rewiev-count">29 отзывов</div>
</div>
</article>
</section>
<aside class="products__recommendations">
<header class="recommendation-header">
<h3 class="recommendation-header__title">Популярные товары</h3>
</header>
<section class="recommendation-links">
<a class="recommendation-links__link link" href="#">Ракушка морская</a>
<a class="recommendation-links__link link" href="#">Чесалка для спины</a>
<a class="recommendation-links__link link" href="#">Чётки</a>
</section>
</aside>
<form class="products__order-form">
<h2>Заказать сувенир</h2>
<div class="row">
<label for="quantity">Количество:</label>
<input type="text" name="order" id="quantity">
</div>
<div class="row">
<label for="city">Город</label>
<select name="order" id="city">
<option value="-">-</option>
<option value="Izhevsk">Izhevsk</option>
<option value="Ekb">Ekb</option>
</select>
</div>
<div class="row">
<label for="email">Email</label>
<input type="email" name="order" id="email" placeholder="email">
</div>
<div class="row">
<label for="tel">Телефон</label>
<input type="tel" name="order" id="tel" placeholder="Номер телефона*" required>
</div>
<div class="row">
<label for="date">Дата доставки:</label>
<input type="date" name="order" id="date">
</div>
<div class="row">
<button type="reset">Сбросить поля</button>
<button type="submit">Заказать!</button>
</div>
</form>
</section>
</main>
</body>
</html>