js-translit/index.html

19 lines
604 B
HTML
Raw Permalink Normal View History

2022-04-26 17:38:41 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
2022-04-27 22:58:34 +03:00
<title>Translite</title>
2022-04-26 17:38:41 +03:00
</head>
<body>
2022-04-27 22:58:34 +03:00
<h1>Translite</h1>
<div class="wrapper">
<textarea id="transtxt" cols="30" rows="15" oninput="translit()"></textarea>
</div>
<button onclick="copytxt()">Copy text</button>
<button onclick="cleartxt()">Clear text</button>
2022-04-28 00:20:12 +03:00
<script src="main.js" charset="utf-8"></script>
2022-04-26 17:38:41 +03:00
</body>
</html>