-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 922 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://api.fontshare.com/v2/css?f[]=general-sans@400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
<title>JoEnglish</title>
</head>
<body>
<header>
<h1>JoEnglish Translate</h1>
</header>
<div id="container">
<div id="source-container">
<section id="source-lang">
</section>
<textarea name="source" id="source" rows="10" placeholder="Enter text..." autofocus></textarea>
</div>
<div id="target-container">
<section id="target-lang">
<h3>English</h3>
</section>
<textarea name="target" id="target" rows="10" placeholder="Translation" autofocus readonly></textarea>
</div>
</div>
</body>
</html>