-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomework7.html
More file actions
27 lines (26 loc) · 845 Bytes
/
homework7.html
File metadata and controls
27 lines (26 loc) · 845 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="homework7.css">
</head>
<body>
<div id="template" style="display: none;">
<div class="item">
<h3 class="name"></h3>
<span class="price"></span>
<p>Цвет: <span class="color"></span></p>
<button class="buy">Купить</button>
</div>
</div>
<div id="cart"></div>
<div id="catalog"></div>
<div class="delivery hide"><span>Укажите адресс доставки</span> <br><input type="text" class="adress"> </div>
<div class="comment hide"><span>оставьте комментарий</span> <br> <textarea name="comment" id="" cols="30" rows="10"></textarea></div>
<div>
<button class="nav">next</button>
</div>
<script src="homework7.js"></script>
</body>
</html>