-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 839 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
<!DOCTYPE html>
<html>
<head>
<title>Browser Extension</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="form">
<!-- <h1>Browser Extension</h1> -->
<!-- <label for="input">Input:</label> -->
<textarea id="input" rows="5"></textarea>
<div class="input-row">
<label for="operation">Operation:</label>
<select id="operation">
<option value="urlencode">URL Encode</option>
<option value="uppercase">Uppercase</option>
<option value="lowercase">Lowercase</option>
<option value="reverse">Reverse</option>
</select>
<button id="submit">Submit</button>
</div>
<!-- <label for="output">Output:</label> -->
<textarea id="output" rows="5"></textarea>
</div>
</div>
<script src="script.js"></script>
</body>
</html>