-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path788177654.html
50 lines (48 loc) · 2.07 KB
/
788177654.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
42
43
44
45
46
47
48
49
50
<!-- word-search-practice -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Word Search Practice</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<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=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/word-search.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/fe678f59d4.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- the overlays that will be displayed when the user succesfully finishes a round -->
<div id="overlay">
<div id="overlay-card">
<h2>Great job! You have succesfully completed this round!</h2>
<i class="fa-solid fa-circle-check fa-5x" style="color: white;"></i>
<br><br>
<a href="958174078.html">Click here to continue</a>
</div>
</div>
<div class="wrapper">
<header>
<div class="time">
<label id="minutes">00</label>
<label id="colon">:</label>
<label id="seconds">00</label>
</div>
<a href="958174078.html" id="skip">Skip Practice Round</a>
</header>
<br>
<h1>Word Search: Practice</h1>
<div class="content">
<div id="board"></div>
<div id="space"><br></div>
<div class="box">
<ul id="word">
</ul>
</div>
</div>
</div>
<script src="js/word-search-practice.js" type="module"></script>
</body>
</html>