-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
47 lines (43 loc) · 1.1 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
47
<!doctype html>
<html>
<head>
<meta http-equiv="content-type"
content="text/html;charset=utf-8"/>
<link rel="stylesheet"
href="css/style.css">
<script type="text/javascript"
src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript"
src="dropbox/dropbox.min.js"></script>
<script type="text/javascript"
src="js/popup.js"></script>
<script type="text/javascript"
src="js/background.js"></script>
<style>
html, body {
margin: 0;
padding: 0;
}
</style>
</head>
<body class="webMark_addBookmark">
<div>
<label>Title:</label>
<input type="text"
class="title"
placeholder="Title"
value=""/>
<label for="">URL:</label>
<input type="text"
class="url"
placeholder="URL"
value=""/>
<label>Tags:</label>
<input type="text"
class="tags"/>
<small>split tags with comma</small>
<button class="add">Add</button>
<button class="cancel">Cancel</button>
</div>
</body>
</html>