-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht-shirt.html
executable file
·107 lines (93 loc) · 2.55 KB
/
t-shirt.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/t-shirt.css">
<title>Document</title>
</head>
<body>
<header>
<div>
<div class="logo"></div>
<h1>ведь ты <em>примат</em></h1>
</div>
</header>
<main>
<div class="menu">
<p>
<a href="index.html">главная</a>
<span>></span>
<span>футболки</span>
</p>
</div>
<div class="shop_button">
<div class="basket"></div>
</div>
<section>
<article>
<div class="img">
<!-- <div class="back">
<a href="index.html">назад</a>
</div> -->
<img src="css/img/t-shirt1.png">
</div>
<aside>
<div>
<h2>товар №1</h2>
<p class="price info">
<b>цена: </b>
<span>220₴</span>
</p>
<p class="info">
<b>состав:</b>
<span>хлопок 100%</span>
</p>
<form>
<p class="info">
<b>размер:</b>
<input type="radio" name="size" id="xs"/>
<label for="xs">XS</label>
<input type="radio" name="size" id="s"/>
<label for="s">S</label>
<input type="radio" name="size" id="m"/>
<label for="m">M</label>
<input type="radio" name="size" id="l"/>
<label for="l">L</label>
<input type="radio" name="size" id="xl"/>
<label for="xl">XL</label>
</p>
</form>
<form>
<p class="info">
<b>Тип:</b>
<input type="radio" name="sex" id="male"/>
<label for="male">мужская</label>
<input type="radio" name="sex" id="female"/>
<label for="female">женская</label>
</p>
</form>
<form>
<p class="info">
<b>цвет:</b>
<input type="radio" name="color" id="white" checked />
<label for="white">белая</label>
<input type="radio" name="color" id="black"/>
<label for="black">черная</label>
</p>
</form>
<button name="buy"> купить </button>
</div>
</aside>
</article>
</section>
</main>
<footer>
<div>
<span>Ищи нас здесь:</span>
<a href="https://t.me/primat_kpi" target="_blank">@primat_kpi</a>
</div>
</footer>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>