21 lines
528 B
HTML
21 lines
528 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>URL to UTF-8 Converter</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>URL to UTF-8 Converter</h1>
|
|
|
|
<form action="convert.php" method="post">
|
|
<label for="url">Enter URL:</label><br>
|
|
<input type="text" id="url" name="url" size="50"><br><br>
|
|
<input type="submit" value="Convert">
|
|
</form>
|
|
|
|
<a href="javascript:window.open('https://www.ngtech.co.il/convert-url/convert.php?url='+encodeURIComponent(window.location.href));">Convert and Open Scriplet</a>
|
|
|
|
</body>
|
|
</html>
|