-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (117 loc) · 4.81 KB
/
Copy pathindex.html
File metadata and controls
121 lines (117 loc) · 4.81 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>Captain quack</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header class="header">
<div class="container">
<div class="logo">
<img class="logo-img" src="./img/DUCK.png" alt="logo duck">
</div>
</div>
</header>
<section class="choose">
<div class="container">
<h1 class="choose-title">¡Ay caramba!</h1>
<div class="choose-form">
<div class="first-line">
<div class="first-line_wrap first-line_name">
<label id="name-auto">Название</label>
<input class="name-auto" type="text" placeholder="Название">
</div>
<div class="first-line_wrap first-line_year">
<label id="year-auto">Год</label>
<input class="year-auto" type="text" placeholder="Год">
</div>
<div class="first-line_wrap first-line_price">
<label id="price-auto">Цена</label>
<input class="price-auto" type="text" placeholder="Цена">
</div>
</div>
<div class="second-line">
<label id="description-auto">Описание</label>
<input class="description-auto" type="text" placeholder="Описание">
</div>
<div class="third-line">
<div class="color">
<legend class="name-color">Цвет</legend>
<input type="radio" value="white" id="white" name="color">
<label for="white" id="label"></label>
<input type="radio" value="black" id="black" name="color">
<label for="black" id="label"></label>
<input type="radio" value="gray" id="gray" name="color">
<label for="gray" id="label"></label>
<input type="radio" value="red" id="red" name="color">
<label for="red" id="label"></label>
<input type="radio" value="green" id="green" name="color">
<label for="green" id="label"></label>
</div>
<select name="status" id="select">
<option>Статус</option>
<option id="yes-stock" value="В наличии">В наличии</option>
<option id="waiting" value="Ожидается">Ожидается</option>
<option id="no-stock" value="Нет в наличии">Нет в наличии</option>
</select>
<button class="choose-btn">Отправить <img class="img-btn" src="./img/arrow_small_right.png"> </button>
</div>
</div>
</div>
</section>
<div class="auto-stock">
<div class="container">
<h3 class="auto-stock_title">Автомобили в наличии</h3>
<div class="wrap-tabel">
<div class="table-header">
<p class="table-header_p p-one">Название</p>
<p class="table-header_p p-year">Год</p>
<p class="table-header_p p-color">Цвет</p>
<p class="table-header_p p-status">Статус</p>
<p class="table-header_p p-price">Цена</p>
</div>
<div class="list-all">
<div class="list-description">1.6 MT Ambiente Plus 105 л.с. МКПП</div>
<div class="list-year">2012</div>
<div class="list-color">
<div class="list-color_w list-color_white"></div>
</div>
<div class="list-status">Ожидается</div>
<div class="list-price">1 189 900 руб.</div>
<div class="list-btn"><button class="list-btn_del">Удалить</button></div>
</div>
<div class="list-all">
<div class="list-description">1.6 MT Trend 105 л.с. МКПП</div>
<div class="list-year">2012</div>
<div class="list-color">
<div class="list-color_w list-color_black"></div>
</div>
<div class="list-status">В ожидании</div>
<div class="list-price">1 459 000 руб.</div>
<div class="list-btn"><button class="list-btn_del">Удалить</button></div>
</div>
<div class="list-all">
<div class="list-description">1.6 PowerShift Trend Sport 105 л.с. АКПП</div>
<div class="list-year">2012</div>
<div class="list-color">
<div class="list-color_w list-color_gray"></div>
</div>
<div class="list-status">В наличии</div>
<div class="list-price">1 459 000 руб.</div>
<div class="list-btn"><button class="list-btn_del">Удалить</button></div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-des">© 2015 CAPTAIN QUACK<br>Десница тысячелетия и моллюск!</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
<script src="./js/field.js"></script>
<script src="./js/addList.js"></script>
</body>
</html>