-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.html
71 lines (71 loc) · 1.85 KB
/
store.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Pokemon Store</title>
<link href="index.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>Pokemon Pops Store</h1>
<h2>Find out the most selling pops items</h2>
<nav>
<ul>
<li><a href="./">Home</a></li>
<li><a href="./store.html">Store</a></li>
<li><a href="./cart.html">Cart</a></li>
</ul>
</nav>
</header>
<hr />
<main>
<article>
<h2>Pops Items</h2>
<figure>
<img
alt="mew-two"
height="150"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/150.png"
width="150"
/>
<figcaption>Mew Two</figcaption>
</figure>
<figure>
<img
alt="mew"
height="150"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/151.png"
width="150"
loading="lazy"
/>
<figcaption>Mew</figcaption>
</figure>
<figure>
<img
alt="pikachu"
height="150"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/025.png"
width="150"
/>
<figcaption>Pikachu</figcaption>
</figure>
</article>
<address>
Route 44<br />
Cliff Cave<br />
Box 564, Cianwood City<br />
Pokeland
</address>
<br />
<a href="tel:+972505101952">Call Me</a>
<a href="mailto:[email protected]">Email Me</a>
<aside>
<details>
<summary>Click here to see prices</summary>
<p>Pops Prices start from 49.90 dollars per item</p>
</details>
</aside>
</main>
<footer>This site was built by ©Doctor Code</footer>
</body>
</html>