35 строки
1.0 KiB
HTML
35 строки
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Mozilla Translations</title>
|
|
<link rel="stylesheet" href="css/index.css" />
|
|
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<div class="panel panel--from">
|
|
<label>
|
|
From
|
|
<select id="lang-from" name="from" class="lang-select"></select>
|
|
</label>
|
|
<textarea id="input" name="input"></textarea>
|
|
</div>
|
|
<button class="swap" title="swap">↔️</button>
|
|
<div class="panel panel--to">
|
|
<label>
|
|
To
|
|
<select id="lang-to" name="to" class="lang-select"></select>
|
|
</label>
|
|
<textarea id="output" name="output" readonly></textarea>
|
|
</div>
|
|
<div class="footer" id="status"></div>
|
|
</div>
|
|
<div id="versionBlock">Version: <span id="version"></span></div>
|
|
<script src="js/index.js"></script>
|
|
</body>
|
|
</html>
|