-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
45 lines (40 loc) · 933 Bytes
/
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>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>form</title>
<style type="text/css">
.fill {
width: 70px;
height: 30px;
background: #00B9AD;
border-radius: 4px;
font-size: 14px;
color: #FFFFFF;
letter-spacing: 0.02px;
margin: 0 5px;
cursor: pointer;
outline: none;
border: none;
}
div {
margin: 5px;
}
textarea {
width: 400px;
height: 180px;
margin: 5px;
}
</style>
</head>
<body>
<div>
<p id="ccc">粘贴你的内容</p>
<form>
<textarea class="text" id="comments" type="text" name="" placeholder="请粘贴字段"></textarea>
</form>
<button class="fill">确定</button>
</div>
</body>
<script type="text/javascript" src="new_app.js"></script>
</html>