-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
123 lines (116 loc) · 5.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Yu-Gi-Oh! Forbidden Memories fusion list" />
<meta name="keywords" content="Yu-Gi-Oh!, YuGiOh, Forbidden Memories, playstation, Fusion" />
<title>About this Project</title>
<link rel="icon" type="image/x-icon" href="public/images/favicon.ico" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="public/css/normalize.css" />
<link rel="stylesheet" href="public/css/about.css" />
</head>
<body>
<header class="header-container">
<nav class="header-nav">
<div class="header-nav-logo">
<a class="general-link" href="index.html">
<img class="image-logo" src="public/images/logo.png" alt="Yu-Gi-Oh! Forbidden Memories Logo" width="72"
height="50" />
</a>
</div>
<div class="header-nav-navigation">
<ul class="header-nav-navigation-list">
<li class="header-nav-navigation-item">
<a class="header-nav-link" href="fusion-search.html">Fusion Search</a>
</li>
<li class="header-nav-navigation-item">
<a class="header-nav-link" href="deck-check.html">Deck Check</a>
</li>
<li class="header-nav-navigation-item">
<a class="header-nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</nav>
</header>
<main class="container-fluid">
<section class="container-about">
<div class="wrapper">
<h2 class="title-main">ABOUT</h2>
<p class="text-info">
First of all, due to inactive maintenance in the original repository, I decided to added some style, and make
it look more good, also made some changes in the actual code...
</p>
<p class="text-info">
YGO-FM does nothing to actually <b>tell</b> you about the fusions. Your options are to either try every card
against every other card (and by the way there's over 720 cards in the game), and since one card might fuse
with a few hundred other cards, trying to find out which
ones are worth it, is tedious.
</p>
</div>
</section>
<section class="container-space"></section>
<section class="container-contribution">
<div class="wrapper">
<h2 class="title-main">CONTRIBUTION</h2>
<p class="text-info">
Get involved with Forbidden Memories Database development by opening an issue or submitting
a pull request.
</p>
<p class="text-info">For more info check the README on the repository.</p>
<a class="btn btn-white" href="https://github.com/falsepopsky/YGO-FM-Database/" rel="noopener noreferrer"
target="_blank">GitHub Repository</a>
</div>
</section>
<section class="container-thanks">
<div class="wrapper">
<h2 class="title-main">SPECIAL THANKS</h2>
<p class="text-info">
<b>Steve Kalynuik, Dylan Birtolo and Miguel Balauag</b>, authors of the
<a class="link" href="https://www.gamefaqs.com/ps/561010-yu-gi-oh-forbidden-memories/faqs/16613"
rel="noopener noreferrer" target="_blank">Fusion FAQ</a>, and the <b>Yu-Gi-Oh! Wikia</b>, which provided the
first database.
</p>
<p class="text-info">
<a class="link" href="https://github.com/CathodeRaymond" rel="noopener noreferrer"
target="_blank">CathodeRaymond</a>
for working with the first design of the project and making the project actually look good.
</p>
<p class="text-info">
<a class="link" href="https://github.com/duke1102" rel="noopener noreferrer" target="_blank">duke1102</a>
for providing the complete card and fusion data, without which this project would be
very inaccurate.
</p>
<p class="text-info">
<a class="link" href="https://www.deviantart.com/marcos0000" rel="noopener noreferrer"
target="_blank">marcos0000</a>
for Forbidden Memories Logo in HD and
<a class="link" href="https://www.deviantart.com/Carlos123321" rel="noopener noreferrer"
target="_blank">Carlos123321</a>
for vrains background.
</p>
<p class="text-info"><b>Giver336</b> for the .gif</p>
</div>
</section>
</main>
<footer class="footer-container">
<section class="footer-top">
<a class="general-link" href="https://github.com/falsepopsky/YGO-FM-Database/" rel="noopener noreferrer"
target="_blank">
<img loading="lazy" class="gh-logo" src="https://img.icons8.com/fluent/48/000000/github.png"
alt="GitHub Repo" />
</a>
<a class="general-link" href="index.html" rel="noopener noreferrer">
<img loading="lazy" class="millennium-pendant" src="public/images/item.png" alt="millennium pendant" />
</a>
</section>
<section class="footer-bottom">
<p>Yu-Gi-Oh! Forbidden Memories Database © 2021</p>
</section>
</footer>
</body>
</html>