-
Notifications
You must be signed in to change notification settings - Fork 0
/
all.html
41 lines (34 loc) · 1.17 KB
/
all.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 name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="/favicon.png" />
<title>Learn IPA</title>
</head>
<div class="container">
<div class="item-1">
<a href="index.html" class="title">Ultimate test</a>
</div>
<div class="item-2">
<div id="quizContainer" class="container-fluid">
<div>
<span id="symbol">Click the button below to generate a cosonant.</span><br />
<div class="d-flex justify-content-center">
<div id='all-opt'></div>
<button id="generateConsonant" class="next-button" onclick="generateConsonant()">Start</button>
<span id="btn-chk"></span>
</div>
</div>
</div>
<script src="app.js"></script>
</div>
<div class="item-3">
<p>Made by <a href="http://caikelaurentino.com.br" target="_blank">Caike Laurentino</a></p>
</div>
</div>
</body>
</html>