-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
35 lines (32 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bootstrap | test-site</title>
<link rel="stylesheet" href="./assets/bootstrap.min.css">
<link rel="stylesheet" href="./assets/style-popup.css">
</head>
<body>
<div>
<!-- <a href="options.html"><img class="action action-icon" src="./img/settings.png" alt='setting'></a> -->
<img class="title-icon" src="./img/icon.png">
<h3 class="title-text mr-side-m center"> Dictionary <small class="color-blue">by <a href="https://github.com/nepalihackers">
nepalihackers</a></small> </h3>
<hr>
</div>
<div class="inputWrapper">
<input class="form-control nav-form word" id="word" type="text" name='word' placeholder="Search Word">
<input class="btn btn-primary" id="search" type="button" name="search" value="Search">
</div>
<div id="output">
</div>
<p class="tips mr-side-m">
Tip: This is a work in progress chrome extenction. For more detail visit
our <a href="https://github.com/nepalihackers/Dictionary/">repo</a> on GitHub.
</p>
<!-- scripts -->
<script src="popup.js" charset="utf-8"></script>
<script src="./assets/jquery.min.js" charset="utf-8"></script>
<script src="./assets/bootstrap.min.js" charset="utf-8"></script>
</body>
</html>