-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (29 loc) · 1.1 KB
/
Copy pathindex.html
File metadata and controls
36 lines (29 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vocabulol</title>
<link rel="stylesheet" href="styles/style.css">
<script src="script/script.js" defer></script>
</head>
<body>
<div class="container-input">
<label for="original-word"></label>
<input type="text" class="input" name="original-word" id="original-word"
placeholder="Entre le mot original :">
<label for="translated-word"></label>
<input type="text" class="input" name="translated-word" id="translated-word"
placeholder="Entre la traduction du mot :">
</div>
<p>Il y a <span id="counter-words"></span> mot(s) enregistrés</p>
<div class="container-btn">
<button type="submit" class="submit" id="submit-btn">
Envoyer
</button>
<button type="submit" class="submit" id="erase-btn">
Effacer la liste en cours
</button>
</div>
</body>
</html>