-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (64 loc) · 3.03 KB
/
index.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="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DRUGS SHOP</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-aFq/bzH65dt+w6FI2ooMVUpc+21e0SRygnTpmBvdBgSdnuTN7QbdgL+OapgHtvPp" crossorigin="anonymous">
<table width="100%">
<tr>
<td>
<center>
<a href="./cart.php" style="color: blueviolet; font-family: monospace; font-size: 30px;">CARRELLO</a>
</center>
</td>
<td>
<center>
<img style="margin-top: 20px;" src="img/gta.png">
</center>
</td>
<td>
<center>
<a href="./login.php" style="color: blueviolet; font-family: monospace; font-size: 30px;">LOGIN</a>
</center>
</td>
</tr>
</table>
</head>
<body style="background-color: #000000e0;">
<center>
<div class="row row-cols-1 row-cols-md-4 g-4">
<div class="col">
</div>
<div class="col">
<div class="card" style="width: 450px; height: 600px; background-color:#000000e0; border-color: blueviolet;" >
<img src="img/cannabis.png" class="card-img-top" alt="...">
<div class="card-body">
<center>
<h5 class="card-title" style="font-family: monospace; font-size: 30px; color: aliceblue;">LEGGERE</h5>
<a class="card-text" href="cannabis.php" style="color: blueviolet; font-family: monospace; font-size: 20px;">CANNABIS</a>
<a class="card-text" href="lsd.php" style="color: blueviolet; font-family: monospace; font-size: 20px;">LSD</a>
<a class="card-text" href="funghetti.php" style="color: blueviolet; font-family: monospace; font-size: 20px;">FUNGHETTI</a>
</center>
</div>
</div>
</div>
<div class="col">
<div class="card" style="width: 450px; height: 600px; background-color:#000000e0; border-color: blueviolet;" >
<img src="img/drugs.png" class="card-img-top" alt="...">
<div class="card-body">
<center>
<h5 class="card-title" style="font-family: monospace; font-size: 30px; color: aliceblue;">PESANTI</h5>
<a class="card-text" href="./cocaine.php" style="color: hsl(271, 76%, 53%); font-family: monospace; font-size: 20px;">COCAINE</a>
<a class="card-text" href="./ecstasy.php" style="color: blueviolet; font-family: monospace; font-size: 20px;">ECSTASY</a>
<a class="card-text" href="./codeine.php" style="color: blueviolet; font-family: monospace; font-size: 20px;">CODEINE</a>
</center>
</div>
</div>
</div>
<div class="col">
</div>
</div>
</center>
</body>
</html>