-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
35 lines (32 loc) · 990 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
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<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">
<script src="src/Fibonacci.js"></script>
<title>Fibonacci & co</title>
</head>
<body>
<h1>Fibonacci & co</h1>
<section>
<h1>Les premiers élément de la suite</h1>
<p>
<label>
Combien d'éléments de la suite :
<br/>
<input id="combienDElement" type="number" min="0">
</label>
</p>
<p>
<button id="afficheSuite10ElementFibo">Affiche les !</button>
</p>
<p id="dixPremiersElementsFibo"></p>
</section>
<script>
afficheSuite10ElementFibo.addEventListener("click", function () {
dixPremiersElementsFibo.innerHTML = donne10PremiersElementsFibo(combienDElement.value)
})
</script>
</body>
</html>