-
Notifications
You must be signed in to change notification settings - Fork 0
/
bulls.html
61 lines (54 loc) · 2.06 KB
/
bulls.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
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link href="http://fonts.cdnfonts.com/css/panton" rel="stylesheet">
<title>Bulls | Drugsly</title>
</head>
<body>
<div class="menu_bar">
<div>
<a class="link" href="index.html">DOMŮ</a>
<a class="link active" href="store.html">OBCHOD</a>
<a class="link" href="warning.html">UPOZORNĚNÍ</a>
<a class="link" href="faq.html">FAQ</a>
<a class="link" href="about.html">O STRÁNCE</a>
<a class="cart" href="cart.html"><img src="cart.png" width="40" alt="Kosik"></a>
<a class="logo" href="index.html"><img src="drugs-ly light white.png" width="100" alt="Logo"></a>
</div>
</div>
<table class="item_table">
<tr>
<td class="item_table_data" rowspan="9"><img src="bull.png" width="500px"></td>
<td class="item_table_name">Bulls</td>
</tr>
<tr>
<td class="item_table_text mdma_red">
<div>
<p>240 mg</p>
<img class="item_table_mdma_bar" src="bulls_mdma.png">
</div>
</td>
</tr>
<tr>
<td class="item_table_avaibility">skladem</td>
</tr>
<tr>
<td class="item_table_text">0.00027 btc</td>
</tr>
<tr>
<td class="item_table_text">0.068 xmr</td>
</tr>
<tr>
<td class="item_table_data"><input class="item_table_amount" type="number" min="1" max="100" placeholder="1"> ks</td>
</tr>
<tr>
<td class="item_table_data">
<div class="item_table_buy">
<a class="item_table_buy_text link_ref" href="cart.html">Koupit</a>
</div>
</td>
</tr>
</table>
</body>
</html>