-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
46 lines (44 loc) · 1.39 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
46
<html>
<head>
<title>Add words</title>
<script src="popup.js"></script>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="header">
<div class="header-logo">
<img src="icons/flame.png" width="30">
<h1>Vocab Burner</h1>
</div>
<!-- <div class="vocab-size-div">
<p class="vocab-size">
Vocabulary size :
</p>
</div> -->
</div>
<div class="container">
<div class="input-container">
<input class="word-input" type="text" id="fromWord" name="fromWord" placeholder="English Word">
<div class="middle-element">
<strong><span>=></span></strong>
</div>
<input class="word-input" type="text" id="toWord" name="toWord" placeholder="Foreign Word">
</div>
<button class="submit-button button-margin" id='addWord'>
<span class="set-font">Add word to Vocabulary</span>
<!-- <img src="images/loading.svg" width="13" height="13"> -->
</button>
<hr/>
<button class="submit-button" id='clearWords'>Reset your Vocabulary</button> <hr/>
<button class="submit-button" id='displayWords'>Display your Vocabulary</button>
</div>
<div class="footer">
<p>
<strong>
Stats |
</strong>
<span class="vocab-size"> Vocabulary size : 0</span>
</p>
</div>
</body>
</html>