-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuycards.html
More file actions
98 lines (91 loc) · 3.16 KB
/
buycards.html
File metadata and controls
98 lines (91 loc) · 3.16 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles/buycards.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="icon" href="/assets/download-icon-pikachu-1320568181523508516_512.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/styles/darkmode.css">
<title>Buy cards</title>
</head>
<body class="darkmode">
<header>
<img id="logo" src="/assets/logo.png" alt="logo">
<div>
<nav>
<ul class="list">
<li><a href="/index.html">Home</a></li>
<li><a href="/buycards.html">Buy Cards</a></li>
<li><a href="/ourblog.html">Our Blog</a></li>
</ul>
</nav>
<button class="bdark">Dark Mode</button>
</div>
</header>
<section id="pandh" >
<h2>Checkout Out Pokemon Cards</h2>
<p>The Pokemon Go expansion for the Pokemon Trading Card Game will release soon.</p>
</section>
<main>
<section>
<ul class="navFilter">
<li class ="type"><a href="#">All</a></li>
<li class ="type"><a href="#">Poison</a></li>
<li class ="type"><a href="#">Fire</a></li>
<li class ="type"><a href="#">Water</a></li>
</ul>
<div class="container"></div>
<div class="showmore">
<!-- <button class="showcard"> Show Cards </button> -->
<p class="count"></p>
</div>
</section>
</main>
<footer>
<div class="redes">
<img src="/assets/logo.png" alt="logo_footer">
<p>
Our vision is to provide convenience <br>and help increase your sales business.
</p>
<div class="icons">
<a href="https://www.facebook.com/Pokemon/">
<i class="fa-brands fa-facebook"></i></a>
<a href="https://twitter.com/pokemon">
<i class="fa-brands fa-twitter"></i> </a>
<a href="https://www.instagram.com/pokemon">
<i class="fa-brands fa-instagram" ></i> </a>
</div>
</div>
<div class="links">
<ul>
About
<li>How it works</li>
<li>Featured</li>
<li>Partnership</li>
<li>Bussines Relation</li>
</ul>
<ul>
Community
<li>Events</li>
<li>Blog</li>
<li>Podcast</li>
<li>Invite a friend</li>
</ul>
<ul>
Socials
<li>Discord </li>
<li>Instagram</li>
<li>Twitter</li>
<li>Facebook</li>
</ul>
</div>
</footer>
<script src="./scripts/darkmode.js"></script>
<script src="./scripts/buycard.js"></script>
</body>
</html>