-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasket-page.html
138 lines (118 loc) · 4.95 KB
/
basket-page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Just+Another+Hand" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="nav-header-fixed">
<div class="container ">
<a href="index.html">
<div class="img-logo">
<img src="images/method-hover.svg" alt="">
</div>
</a>
<ul class="nav-wrapper right ">
<a href="index.html"><li>home</li></a>
<a href="index.html"><li>products</li></a>
<a href="index.html"><li>shipping and payment</li></a>
<a href="index.html"><li>about us</li></a>
<a href="index.html"><li>contacts</li></a>
<a href="#"><li><i class="fa fa-shopping-basket fa-lg" aria-hidden="true"></i></li><div class="suma"></div></a>
</ul>
</div>
</div>
<div class="container basket-page">
<div class="row">
<div class="col l12">
<h5>Корзина</h5>
<table>
<tr class="grey lighten-3">
<th>Название</th>
<th>Кол-во</th>
<th>Цена</th>
</tr>
<tbody>
<tr>
<td>
<a class="z-depth-1 cyan white-text bot" href="#">x</a> <span>Зимняя мериносовая шапочка</span>
</td>
<td class="bold">
<a class="z-depth-1 cyan white-text bot" href="#">-</a><span> 1 </span>
<a class="z-depth-1 cyan white-text bot" href="#">+</a>
</td>
<td>595 грн.</td>
</tr>
<tr class="grey lighten-3">
<td colspan="2">Сумма:</td>
<td>595 грн.</td>
</tr>
</tbody>
</table>
</div>
</div>
<h5>Заполнить форму заказа</h5>
<div class="row">
<div class="col l12">
<div class="input-field col s12">
<input id="last_name" type="text" class="validate">
<label for="last_name">ФИО:</label>
</div>
</div>
<div class="col l12">
<div class="input-field col s12">
<input id="last_name" type="text" class="validate">
<label for="last_name">Телефон:</label>
</div>
</div>
<div class="col l12">
<div class="input-field col s12">
<input id="last_name" type="text" class="validate">
<label for="last_name">Email:</label>
</div>
</div>
<div class="col l3 right">
<button class="button-see-all-products">ПОДТВЕРДИТЬ ЗАКАЗ</button>
</div>
</div>
</div>
<footer class="page-footer grey lighten-4 grey-text text-darken-2">
<div class="container">
<div class="row">
<div class="col l6 s12">
<a href="index.html"><h5 class="hover">MV_Studio</h5></a>
<p>Якісний, сучасний та зручний одяг для всієї родини.</p>
</div>
<div class="col l4 offset-l2 s12">
<h5>Контакти</h5>
<ul>
<li>Тел: <a class="grey-text text-darken-2 " href="#!"><span class="hover">+380967601420</span></a></li>
<li>E-mail:<a class="grey-text text-darken-2 " href="#!"><span class="hover">[email protected]</span></a></li>
<li><a class="grey-text text-darken-2 " href="#!">м. Київ, Україна</a></li>
<li>
<a class="grey-text text-darken-2" href="#!">
<i class="fa fa-instagram fa-2x fs-and-inst-mar hover" aria-hidden="true"></i>
<i class="fa fa-facebook-official fa-2x hover" aria-hidden="true"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright grey-text text-darken-2">
<div class="container">
© MV_Studio 2017
</div>
</div>
</footer>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js">
</script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
</html>