-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 945 Bytes
/
index.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
<html>
<head>
<title>Chrome Extention</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div>
<input type="text" >
<button id="submit" type="submit">Add</button>
<div>
<button class="delete-btn" style="background-color: #ff4d4f;
width: 138px;
color: #fff;
border: none;
border-radius: 8px;
padding: 10px 10px;
font-size: 14px;
cursor: pointer;
transition: background-color 0.3s;" id="delete" type="submit">Delete</button>
<button id="tab" type="submit" style="
background-color: #2b8426;
width: 138px;
color: #fff;
border: none;
border-radius: 8px;
padding: 10px 10px;
font-size: 14px;
cursor: pointer;
transition: background-color 0.3s;">Add tab</button>
</div>
<div class="ul">
<ul>
</ul>
</div>
</div>
<script src="index.js"></script>
</body>