-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.28 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
<!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>Common Spanish words Flash Cards</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="card.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico?">
</head>
<body>
<h1 class="title">2000 Common Spanish Words</h1>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<h1 id="word" class="word"></h1>
</div>
<div class="flip-card-back">
<h1 id="translation" class="word"></h1>
</div>
</div>
<div class="flag">
<img class="esimage" src="es.svg" width="20px">
<img class="gbimage"src="gb.svg" width="20px">
</div>
</div>
<div class="helpers">
<div class="speaker">
🔊
</div>
<img class="translate" src="translate.svg" width="17px">
</div>
<button id="morebtn"> Random Word</button>
<p class="keys">Press the Spacebar/Enter/n for the next word</p>
<script src="word.js"></script>
<script src="app.js"> </script>
</body>
</html>