-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.15 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>04_parlez_vous_le_morse</title>
<script type="module" src="script.js" defer></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="main-container">
<h1>Parlez vous le morse ?</h1>
<div class="encode">
<label id="label-encode" for="encode-latin"
>Encode Latin to Morse</label
>
<input
id="encode-latin"
type="text"
placeholder="Entrer votre nom Latin"
/>
<button id="start-encode" type="submit">START</button>
<div class="result-encode-container"></div>
</div>
<div class="decode">
<label id="label-decode" for="decode-morse"
>Decode Morse to Latin</label
>
<input
id="decode-morse"
type="text"
placeholder="Entrer votre nom Morse"
/>
<button id="start-decode" type="submit">START</button>
<div class="result-decode-container"></div>
</div>
</div>
</body>
</html>