-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (95 loc) · 4.63 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
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
<!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="icon" type="image/jpg" href="./assets/pokeball.png"/>
<title>Pokemon</title>
<link rel="stylesheet" href="./styless/index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styless/darkmode.css">
</head>
<body>
<header class="header">
<a href="./index.html"><img class="img1" src="./assets/logo.png" alt="logoPokemon"></a>
<div class="list1">
<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 id="btn-darkmode"class="buttondarkmode">Dark Mode</button>
</div>
</header>
<main class="indexmain">
<div class="indexsection">
<p class="indexp1">Discover the treasures awaiting for you...</p>
<h1 >POKEMON ACTION FIGURES, <br> TOYS AND CARS</h1>
<p class="indexp2">
Pokémon is a media franchise owned by video game giant Nintendo and <br>created by Satoshi Tajiri around 1995. Originally released as a pair of <br>interlinkable Game Boy role-playing video games, Pokémon has since <br>become the 2nd most successful and lucrative video game-based media <br>franchise in the world, behind only Nintendo's Mario series.
</p>
<div>
<ul class="links">
<button class="btn-ourblog"><a href="/ourblog.html">Go to our blog</a></button>
<button class="btn-buycards"><a href="/buycards.html">Buy cards</a></button>
</ul>
</div>
</div>
<img class="imagen" src="./assets/ash-leaves-anime 1.png" alt="imagenPokemon">
</main>
<footer>
<div class="vision">
<img class="logo-pokemon" src="./assets/logo.png" alt="logoPokemon">
<p>Our vision is to provide convenience <br> and help increase your sales business. </p>
<a href="https://www.facebook.com/Pokemon/?locale=es_LA" target="_blank">
<img class="redes-icons" src="./assets/Facebook.png" alt="logoFacebook" >
</a>
<a href="https://twitter.com/Pokemon?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor" target="_blank">
<img class="redes-icons" src="./assets/Twitter.png" alt="logoTwitter">
</a>
<a href="https://www.instagram.com/pokemon/?hl=es" target="_blank">
<img class="redes-icons" src="./assets/Instagram.png" alt="logoInstagram">
</a>
</div>
<div class="footercolumns">
<div class="columns">
<div>
<h4>About</h4>
<ul class="about">
<li><a href="/">How it works</a></li>
<li><a href="/">Featured</a></li>
<li><a href="/">Partnership</a></li>
<li><a href="/">Bussiness Relation</a></li>
</ul>
</div>
<div>
<h4>Community</h4>
<ul>
<li><a href="/">Events</a></li>
<li><a href="/">Blog</a></li>
<li><a href="/">Podcast</a></li>
<li><a href="/">Invite a friend</a></li>
</ul>
</div>
<div>
<h4>
Socials
</h4>
<ul>
<li><a href="https://discord.com/invite/cpokemon" target="_blank">Discord</a></li>
<li><a href="https://www.instagram.com/pokemon/?hl=es" target="_blank">Instagram</a></li>
<li><a href="https://twitter.com/Pokemon?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor" target="_blank">Twitter</a></li>
<li><a href="https://www.facebook.com/Pokemon/?locale=es_LA" target="_blank">Facebook</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="./funcionalidades/darkmode.js"></script>
</body>
</html>