-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.94 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 1.94 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div id="popup">
<div id="popup-content">
<h1>Jhon Won!! Yaay🎉🎉🎉</h1>
<button onclick="document.getElementById('popup').style.display = 'none'" id="close">Sweet!</button>
</div>
</div>
<div id="n-btns">
<button id="x5">5x5</button>
<button id="x6">6x6</button>
<button id="x7">7x7</button>
<button id="x8">8x8</button>
<button id="x9">9x9</button>
</div>
<diV class="grid-cont">
<div id="myID">My Room No.: </div>
<div id="o-number">Playing with 1234</div>
<div>
<table>
<tbody id="grid">
</tbody>
</table>
</div>
<div id="foundWord">
<div id="foundWordTxt"></div>
<div id="meaningTxt"></div>
</div>
</diV>
<div class="point-cont">
<div id="playBtn">
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" fill="#00ff88" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"></rect><path d="M232.3,114.3,88.3,26.4a15.5,15.5,0,0,0-16.1-.3A15.8,15.8,0,0,0,64,40V216a15.8,15.8,0,0,0,8.2,13.9,15.5,15.5,0,0,0,16.1-.3l144-87.9a16,16,0,0,0,0-27.4Z"></path></svg>
</div>
<div id="timer">10:00</div>
<div>
Rules:
<ul>
<li>Word should have alteast 3 letters</li>
<li>Letter tiles should be contigious</li>
</ul>
</div>
<div class="point" id="point"></div>
<div class="point" id="o-point"></div>
<div id="foundWords"></div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>