-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (84 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Discount</title>
<link rel="shortcut icon" href="./img/favicon/favicon.ico">
<!-- SEO -->
<meta name="description" content="">
<meta name="keywords" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<!-- * Подключаем поддержку иконок -->
<!-- <link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/> -->
</head>
<body>
<!-- * Body code -->
<div class="wrapper">
<!-- * header -->
<!-- * main -->
<div class="container">
<div class="products">
<div class="product">
<div class="product__title">Product 1</div>
<div class="product__input-weight input-div">
<input type="number" class="test-input weight" value=''>
<div class='info'>г</div>
</div>
<div class="product__input-price input-div">
<input type="number" class="test-input price" value=''>
<div class='info'>грн</div>
</div>
</div>
<div class="product">
<div class="product__title">Product 2</div>
<div class="product__input-weight input-div">
<input type="number" class="test-input weight" value=''>
<div class='info'>г</div>
</div>
<div class="product__input-price input-div">
<input type="number" class="test-input price" value=''>
<div class='info'>грн</div>
</div>
</div>
<div class="out">
<div class="best-product">Product</div>
<div class="button">Выбрать</div>
</div>
<div class="product">
<div class="product__title">Product 3</div>
<div class="product__input-weight input-div">
<input type="number" class="test-input weight" value=''>
<div class='info'>г</div>
</div>
<div class="product__input-price input-div">
<input type="number" class="test-input price" value=''>
<div class='info'>грн</div>
</div>
</div>
<div class="product">
<div class="product__title">Product 4</div>
<div class="product__input-weight input-div">
<input type="number" class="test-input weight" value=''>
<div class='info'>г</div>
</div>
<div class="product__input-price input-div">
<input type="number" class="test-input price" value=''>
<div class='info'>грн</div>
</div>
</div>
</div>
</div>
<!-- * footer -->
</div>
<!-- * End of body code -->
<!-- Scripts after -->
<script src="./js/app.js"></script>
</body>
</html>