-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (51 loc) · 1.89 KB
/
index.html
File metadata and controls
54 lines (51 loc) · 1.89 KB
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
<!DOCTYPE html>
<html lang="es_MX">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tilt JS - Bitquark</title>
<link rel="stylesheet" href="./app.css">
</head>
<body>
<div class="grid">
<div class="product-card">
<img draggable="false" src="./utils/xbox.jpg" alt="Xbox one s">
<div class="product-details">
<p>Consola Xbox One S 1TB</p>
<div class="tags-container">
<span class="tag">envío gratis</span>
<span class="tag">Ofertas</span>
</div>
<p class="price">$ 7,999</p>
</div>
<a href="#" class="buy-btn">Comprar</a>
</div>
<div class="product-card">
<img draggable="false" src="./utils/switch.jpg" alt="Nintendo Switch">
<div class="product-details">
<p>Nintendo Switch edición Animal Crossing - New Horizons</p>
<div class="tags-container">
<span class="tag">envío gratis</span>
<span class="tag">Ofertas</span>
</div>
<p class="price">$ 6,999</p>
</div>
<a href="#" class="buy-btn">Comprar</a>
</div>
<div class="product-card">
<img draggable="false" src="./utils/ps4.jpg" alt="PS4">
<div class="product-details">
<p>PS4 Slim 1TB</p>
<div class="tags-container">
<span class="tag">envío gratis</span>
<span class="tag">Ofertas</span>
</div>
<p class="price">$ 5,999</p>
</div>
<a href="#" class="buy-btn">Comprar</a>
</div>
</div>
<script src="utils/vanilla-tilt.min.js"></script>
<script src="app.js"></script>
</body>
</html>