-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeck.html
More file actions
44 lines (44 loc) · 1.5 KB
/
Copy pathdeck.html
File metadata and controls
44 lines (44 loc) · 1.5 KB
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" />
<script src="https://unpkg.com/phosphor-icons"></script>
<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=Inter:wght@400;600;700&family=Nunito:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" href="src/style/main.css" />
<link rel="stylesheet" type="text/css" href="src/style/deck.css" />
<title>espeon</title>
</head>
<body>
<main>
<section>
<div id="deck-container"></div>
</section>
<div class="remove-card-zone">
<i class="ph-trash-bold"></i>
<p>Remove card</p>
</div>
<footer>
<nav id="bottom-nav">
<ul>
<li>
<a class="nav-link" title="Search" href="."><i class="ph-magnifying-glass"></i></a>
</li>
<li>
<a class="nav-link" title="Deck" href="deck.html"><i class="ph-cardholder"></i></a>
</li>
</ul>
</nav>
</footer>
<div id="toast-container" role="dialog"></div>
</main>
<script type="module" src="src/ts/main"></script>
<script type="module" src="src/ts/deck"></script>
</body>
</html>