-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasl-game.html
More file actions
79 lines (68 loc) · 3.04 KB
/
asl-game.html
File metadata and controls
79 lines (68 loc) · 3.04 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
67
68
69
70
71
72
73
74
75
76
77
78
<!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="styles.css">
<link rel="stylesheet" href="game-styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<title>ASL Game</title>
</head>
<body>
<header>
<p class="socials">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/">Instagram</a> |
<i class="fas fa-envelope"></i>
<a href="mailto:sharamoegi@gmail.com" >E-mail</a> |
<i class="fas fa-phone"></i>
Contact:+254701234567 |
<i class="fas fa-map-marker-alt"></i>
<a href="https://www.google.com/maps/place/Moringa+School/@-1.3005626,36.7819031,17z/data=!3m1!4b1!4m6!3m5!1s0x182f114b28dbee89:0x964f362324a8e3fe!8m2!3d-1.3005626!4d36.784478!16s%2Fg%2F11ygqkn3qc?entry=ttu&g_ep=EgoyMDI2MDEyMS4wIKXMDSoASAFQAw%3D%3D"
>Location</a> </p>
<Strong><h1>ASL Translator</h1></Strong>
<!--Navigation Panel-->
<div class="nav">
<a href="index.html">Home</a>
<a href="asl-introduction.html">Introduction</a>
<a href="asl-dictionary.html">Dictionary</a>
<a href="asl-game.html">ASL-Game</a>
</div>
</header>
<h1 class="heading">ASL Game</h1>
<p>Pick the correct word for the ASL sign shown!</p>
<div class="asl-game" id="game">
<div id="sign-container">
<img id="sign-image" src="" alt="ASL sign">
</div>
<div id="score-section">
<p id="score">Score: 0</p>
<p id="progress">Question 1 of 10</p>
</div>
<div id="options" ></div>
<p id="feedback"></p>
<button id="next-btn" disabled>Next</button>
<button id="new-game" onclick="resetGame()" style="display:none">New Game</button>
</div>
<div class="nav-btns">
<button class="nav-btn"><a href="index.html">Home</a></button>
<button class="nav-btn"><a href="asl-introduction.html">Introduction</a></button>
<button class="nav-btn"><a href="asl-dictionary.html">Dictionary</a></button>
</div>
<script src="script.js"></script>
<footer>
<p>
ASL Translator. <br><br>
<a href="https://www.instagram.com/">Instagram</a> |
<a href="mailto:sharamoegi@gmail.com" >E-mail</a> |
Contact:+254701234567 |
<a href="https://www.google.com/maps/place/Moringa+School/@-1.3005626,36.7819031,17z/data=!3m1!4b1!4m6!3m5!1s0x182f114b28dbee89:0x964f362324a8e3fe!8m2!3d-1.3005626!4d36.784478!16s%2Fg%2F11ygqkn3qc?entry=ttu&g_ep=EgoyMDI2MDEyMS4wIKXMDSoASAFQAw%3D%3D"
>Location</a> </p>
<p>P.O Box 12345-00100, Nairobi, Kenya<br>
Ngong Road, Ngong Lane Plaza, 1st Floor<br></p>
<p>For any inquires, feel free to reach us on our E-mail: deafcommunity.kenya@gmail.com</p>
</p>Together for equality. Reach out and join the conversation.
<p class="Copyright">ASL Translator © 2026</p>
</footer>
</body>
</html>