-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.7 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yu-Gi-Oh! API</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<script defer src="script.js"></script>
</head>
<body>
<header>
<nav class="navbar">
<h1 class="title">Yu-Gi-Oh! API</h1>
<span class="nav-span">
<a href="https://ygoprodeck.com/api-guide/" target="_blank"> API utilizada no projeto</a>
</span>
</nav>
</header>
<main>
<div class="container">
<section class="search-section">
<div class="input-container">
<label class="card-input-label" for="card-input"></label>
<input name="card-name" id="card-input" type="text" placeholder="Nome da carta">
<button class="search-button" type="button">Pesquisar</button>
<small class="error-text"></small>
<select size="" name="" id="" style="visibility: hidden;"></select>
</div>
</section>
<section class="info-section">
<h2 class="card-name">Pessoas Correndo às Voltas</h2>
<div class="img-desc-container">
<img class="card-img" src="assets/placeholder.jpg" alt="Pessoas Correndo às Voltas" title="Pessoas Correndo às Voltas">
<p class="card-desc">Embora sofram sempre em silêncio, eles juram inevitavelmente revoltarem-se.</p>
</div>
</section>
</div>
</main>
</body>
</html>