-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
64 lines (52 loc) · 1.33 KB
/
cart.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
<!DOCTYPE html>
<html lang="ru" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="cart.css">
<title></title>
</head>
<body>
<div id="product_template" >
<img src="" alt="">
<input type="button" id="" value="">
</div>
<div id="wrapper">
</div>
<div class="cart_wrapper">
<h3>
Состав корзины
</h3>
<div id = "cart">
</div>
<input type="button" class="cart2delivery" value="Далее">
</div>
<div class="delivery_wrapper">
<h3>
Адрес доставки
</h3>
<div id = "delivery" class="none">
<form action="#">
<input type="text" name="city"><br>
<input type="text" name="street"><br>
<input type="text" name="building"><br>
<input type="text" name="zip"><br>
<input type="button" class="delivary2comments none" value="Далее">
</form>
</div>
</div>
<div class="delivery_wrapper">
<h3>
Комментарий
</h3>
<div id = "order" class="none">
<input type="textBox" name="comment"><br>
</div>
<input type="button" class="cart_order none" value="Далее">
</div>
<script src="hw6_cart.js"></script>
=======
<div id="cart">
</div>
<script src="hw5_cart.js"></script>
</body>
</html>