-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
57 lines (47 loc) · 933 Bytes
/
popup.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
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>popup</title>
</head>
<style type="text/css">
*{
color: white;
}
body{
background-color: black;
}
input{
border: none;
border-bottom: 2px solid white;
background-color: black;
}
button{
background-color:black;
border-radius: 3px;
border-bottom-color: white;
}
div{
display: flex;
justify-content: center;
align-items: center;
}
#defitnition{
border:none;
border-top: 2px solid white;
}
</style>
<body>
<div id="defitnition">
Guess the word by it definition !
</div><br>
<div id="inputbox">
<input type="text" id="Guess" placeholder="Type here"><br><br>
<!-- <button onclick="check()">Guess</button> -->
</div>
<div id="levisteinDist">
You are X words away .
</div>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>