-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (41 loc) · 1.31 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Key-word finding</title>
<style>
body {
min-width:300px;
}
</style>
</head>
<body>
<div>
<h3>select a word and after right click select search option to know its meaning </h3 >
<h3>OR enter it below</h3>
</div>
<div id="meaning"></div>
<div>
<!-- <form name="myForm" id="myform" > -->
<input id="textInput" type="text" placeholder="Search.." name="search" >
<button id="bId" style="width:100px;height:25px;" type="submit">Search</button>
<script src="popup.js"></script>
<!-- </form> -->
</div>
</div>
</body>
</html>
<!-- <html>
<head>
<title> Water Popup </title>
</head>
<body>
<img src = './stay_hydrated.png' id = 'hydrateImage' >
<button id = 'sampleSecond' value = '0.1' > Sample Second </button>
<button id = '15min' value = '15' > 15 Minutes </button>
<button id = '30min' value = '30' > 30 Minutes </button>
<button id = 'cancelAlarm' > Cancel Alarm </button>
<script src = "popup.js" ></script>
</body>
</html> -->