-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.31 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
<!DOCTYPE html>
<html lang="fr">
<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="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;800&display=swap" rel="stylesheet">
<title>Random Picker</title>
<link rel="icon" href="img/icon.svg">
</head>
<body>
<div class="form-box">
<div id="buttons">
<button onclick="addChoice()">+</button>
<button onclick="deleteChoice()">-</button>
<button onclick="exportData()"><img src="img/export.svg"></button>
<button onclick="importData()"><img src="img/import.svg"></button>
</div>
<div id="form">
<input type="text" placeholder="Choix 1" required>
<input type="text" placeholder="Choix 2" required>
<button id="choose-button" onclick="choose()">Choisir !</button>
</div>
</div>
<div id="result" hidden></div>
<footer>
<p>© 2022 Mathys </p>
</footer>
<script type="text/javascript" src="app.js"></script>
</body>
</html>