-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflashcard.html
More file actions
66 lines (58 loc) · 1.87 KB
/
flashcard.html
File metadata and controls
66 lines (58 loc) · 1.87 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="description" content="Pokemon Flashcards" />
<meta name="keywords" content="Pokemon, flashcards, games, fun" />
<meta name="author" content="Swatilekha Roy" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Style -->
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- Favicon -->
<link rel="shortcut icon" href="assets/favicon.png" type="image/x-icon" />
<!-- Title of Website -->
<title>My Pokemon Zone</title>
<!-- Font Awesome Icons -->
<script
src="https://kit.fontawesome.com/26bc379f29.js"
crossorigin="anonymous"
></script>
</head>
<!-- Website Content -->
<body onload="getRandom()">
<!-- Header -->
<header>
<img
src="assets/logo.png"
alt="logo"
width="200px"
style="display: inline !important"
/>
<span><a href="index.html">Home</a></span>
<span><a href="https://www.pokemon.com">About Pokemon</a></span>
<span><a href="https://pokemondb.net/">Pokemon Database</a></span>
<span><a href="#">Flashcards</a></span>
</header>
<!-- Flashcards -->
<div class="top-content">
<div id="flashcard-term">
<h2>Term</h2>
</div>
<div id="flashcard-definition">
<p>Definition</p>
</div>
</div>
<div class="flashcard-btn">
<button id="flash-def-btn" onclick="showdef()">Show Definition</button>
<button type="button" onclick="getRandom()">Next Term</button>
</div>
<!-- Footer -->
<footer style="position: fixed">
<p>
Made with <i class="fa fa-duotone fa-heart"></i> by Swatilekha, 2022
</p>
</footer>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>