-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.54 KB
/
Copy pathindex.html
File metadata and controls
44 lines (39 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SearchyWord</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="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=Montserrat:wght@400;500&display=swap" rel="stylesheet">
</head>
<body>
<div id="mainbox" class="container">
<table id="crossword-grid">
<!-- Create 12 rows -->
</table>
<div id="word-box">
<button class="btn another-btn" id="anotherOne">Another One!</button>
<!-- Create a list item for every word -->
</div>
</div>
<!-- Puzzle completion popup -->
<div id="confirmationPopup" class="confirmation-popup">
<h2 id="popup-heading"></h2>
<p>Do you want to play another round?</p>
<button class="btn" id="playAgain">Yes, please!</button>
<button class="btn" id="playLater">No, it's okay</button>
</div>
<!-- Screenshot button -->
<button id="screenshot-btn" class="screenshot-btn" onclick="takeScreenshot()">Screenshot</button>
<!-- Tiny popup Code -->
<div id="tiny-popup" class="toast-popup"></div>
<!-- Overlay Code -->
<div class="overlay" id="overlay"></div>
<script src="script.js"></script>
<script src="html2canvas.js"></script>
</body>
</html>