-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.29 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
<!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">
<!--PHOSPHOR ICONS-->
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<title>Modèle</title>
</head>
<body>
<div class="container">
<div class="content">
<h1>The FormData Object</h1>
<form id="add-item">
<label for="item">Add an item to the list...</label>
<input placeholder="Tomatoes" type="text" id="item" name="item">
<button>Add Item</button>
</form>
<ul id="items"></ul>
<div class="randomizer">
<button id="pick">Pick a random item <i class="ph ph-shuffle"></i></button>
<div id="chosen" class="inactive"></div>
<details>
<summary><em>Clear the list...</em></summary>
<p>Are you sure? This can't be undone.</p>
<button id="clear">Yes, I'm sure <i class="ph ph-trash"></i></button>
</details>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>