-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1 KB
/
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
<!DOCTYPE html>
<html>
<head>
<title>URL Encoder (Percent Encoding)</title>
<link href="./style.css" rel="stylesheet">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<form id="url-form" class="container">
<h1>URLEncoder</h1>
<label for="url">Enter URL: </label>
<input type="text" name="url" id="url" />
<br /><br />
<label>Select Character-set of the URL: </label>
<br /><br />
<label for="Windows-1252">Windows-1252</label>
<input type="radio" name="charset" id="Windows-1252" value="Windows-1252" checked />
<label for="UTF-8">UTF-8</label>
<input type="radio" name="charset" id="UTF-8" value="UTF-8" />
<br /><br />
<button type="submit">Encode</button>
<p id="result"></p>
</form>
<script src="./script.js"></script>
</body>
</html>