-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
50 lines (42 loc) · 1.05 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
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>Webpage Feedback</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
background-color: #f9f9f9;
}
h1 {
color: #333;
}
textarea {
width: 100%;
height: 100px;
margin-bottom: 10px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
.message {
margin-top: 20px;
font-size: 14px;
}
</style>
</head>
<body>
<h1>Webpage Feedback</h1>
<textarea id="feedback" maxlength="500" placeholder="Write your feedback here..."></textarea>
<button id="submitFeedback">Submit</button>
<div id="message" class="message"></div>
<script src="popup.js"></script>
</body>
</html>