-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
47 lines (42 loc) · 2.29 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pokémon Virtual Trading Card Binder</title>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9589606860210507"
crossorigin="anonymous"></script>
<script defer src="script.js"></script>
<link rel="stylesheet" href="style.css"></link>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<div class="navigation-menu">
<img src="android-chrome-512x512.png" alt="PKMN Logo" class="logo">
<div class="pkmnbinder">
<a href="index.html">pkmnbinder</a>
</div>
<div class="nav-menu">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="buy.html">Buy</a>
</div>
</div>
<div class="text-section">
<p>pkmnbinder is a website I made to generate and visualize Pokémon TCG Expansions in binder format. Generate binder pages in 2x2, 3x3, 3x4 or 4x4 format! Additionally, choose between interweaving the parallel set, tacking it on to the end, or not including it at all.</p>
<p>The site currently supports the following sets:</p>
<ul id="setList"></ul>
<p>Thank you for visiting my site!</p>
</div>
<div class="text-section">
<p>Pokémon and its trademarks are ©1995-2024 Nintendo, Creatures, and GAMEFREAK. Related media appearing on this site are the property of The Pokémon Company International, Inc.</p>
<p>This is an unofficial site produced by Luma, who is neither affiliated with nor endorsed by Nintendo, Creatures, GAMEFREAK, or The Pokémon Company International, Inc.</p>
</div>
<script>
window.onload = function() {
generateSetList();
};
</script>
</body>
</html>