-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
30 lines (27 loc) · 911 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 400px;
}
</style>
</head>
<body>
<h2>You are reading about:</h2>
<form action="onSubmit">
<label for="name">Title:</label><br>
<input type="text" id="name" name="name" value="John"><br>
<label for="language">Language:</label><br>
<input type="text" id="language" name="language" value="Doe"><br><br>
<label for="date">Date:</label><br>
<input type="text" id="date" name="date" value="Doe"><br><br>
<label for="keywords">Keywords:</label><br>
<input type="text" id="keywords" name="keywords" value="Doe"><br><br>
<label for="description">Description:</label><br>
<input type="text" id="description" name="description" value="Doe"><br><br>
<label for="site">Site:</label><br>
<input type="text" id="site" name="site" value="Doe"><br><br>
<script src="popup.js"></script>
</body>
</html>