-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (64 loc) · 1.97 KB
/
index.html
File metadata and controls
69 lines (64 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./assets/styles/styles.css">
</head>
<body>
<header>
Relojes Japoneses
</header>
<nav>
<h3>Marcas</h3>
<ul>
<li>CASIO <span class="quantities">(2)</span></li>
<li>SEIKO <span class="quantities">(2)</span></li>
<li>CITIZEN <span class="quantities">(1)</span></li>
<li>ORIENT <span class="quantities">(1)</span></li>
</ul>
</nav>
<main>
<article class="product-card">
<img src="./assets/imgs/casio1.jpg" alt="Casio1">
<h3>Alarm Chrono</h3>
<p>$13.000</p>
<button>Comprar</button>
</article>
<article class="product-card">
<img src="./assets/imgs/casio2.jpg" alt="Casio2">
<h3>Vintage Denim</h3>
<p>$18.000</p>
<button>Comprar</button>
</article>
<article class="product-card">
<img src="./assets/imgs/seiko1.jpg" alt="Style60">
<h3>Style60</h3>
<p>$24.000</p>
<button>Comprar</button>
</article>
<article class="product-card">
<img src="./assets/imgs/seiko2.jpg" alt="Ash Blue">
<h3>Ash Blue</h3>
<p>$26.000</p>
<button>Comprar</button>
</article>
<article class="product-card">
<img src="./assets/imgs/citizen.jpg" alt="Eco-Drive">
<h3>Eco-Drive</h3>
<p>$21.000</p>
<button>Comprar</button>
</article>
<article class="product-card">
<img src="./assets/imgs/orient.jpg" alt="Bambino">
<h3>Bambino</h3>
<p>$27.000</p>
<button>Comprar</button>
</article>
</main>
<footer>
@vintagejapan
</footer>
</body>
</html>