-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (111 loc) · 3.53 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!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" />
<!-- Title -->
<title>Tempedia</title>
<!-- CSS -->
<link rel="stylesheet" href="./css/styles.css" />
<!-- Favico -->
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon" />
<!-- Google Fonts -->
<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=Open+Sans:wght@400;700&family=Passion+One:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- Script -->
<script src="./js/app.js" type="module" defer></script>
</head>
<body>
<!-- Header -->
<header class="menu-header">
<a href="#"
><img src="./assets/temtem.png" alt="Temtem" class="logo"
/></a>
<nav>
<ul>
<a href="#"><li>Types</li></a>
<a href="#"><li>Matchups</li></a>
<a href="#"><li>Tempedia</li></a>
<a href="#"><li>About</li></a>
</ul>
</nav>
<a href="#" class="btn-lg buy">Buy Now</a>
</header>
<!-- Main -->
<main>
<!-- Tempedia -->
<section class="tempedia">
<div class="title">
<h1>Tempedia</h1>
<p>Temtems details</p>
</div>
<div class="tempedia-container">
<form>
<label for="temtemSearch">Search Temtem</label>
<input
type="text"
name="temtem"
id="temtemSearch"
autocomplete="off"
/>
<button class="btn-sm" id="searchButton" type="button">
Search
</button>
</form>
<p id="errorSearch"></p>
<div class="tempedia-text active">
<h1>SEARCH TEMTEMS BY NAME OR NUMBER</h1>
</div>
<div class="temtem-card">
<div class="temtem-portrait">
<img src="" id="temtemImg" onerror="null" />
<h2 id="temtemName">Ganki</h2>
</div>
<div class="temtem-infos">
<p id="temtemId"></p>
<p id="description">Description:</p>
<div class="type-content">
<p>Types:</p>
<div class="types-img"></div>
</div>
<div class="traits-title"><h1>Traits</h1></div>
<div class="traits-content"></div>
</div>
</div>
<seaction class="matchups">
<div class="matchups-titles">
<h1>Matchups</h1>
</div>
<h2 class="weaknesse-title">weakness</h2>
<div class="damage-content">
<ul id="weakness1"></ul>
</div>
<a href="#" target="_blank" id="mostInfos" class="btn-lg"
>Most infos here!</a
>
</seaction>
<img
class="img-bottom"
src="http://sm.ign.com/ign_br/screenshot/default/a1d981f918316cd0430c91a2b9078208-original_t4fe.png"
alt=""
/>
</div>
</section>
</main>
<footer>
<p>
Developed by
<a href="https://github.com/EduardoAguiarS/Tempidia" target="_blank"
>Eduardo Aguiar</a
>
/ API powered by
<a href="https://temtem-api.mael.tech/" target="_blank">Maael</a>
</p>
</footer>
</body>
</html>