-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (44 loc) · 2.02 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
43
44
45
46
<!--
Auteur : AWADEME FINANFA Ronaldo
Email: [email protected]
-->
<!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">
<title>Calculatrice JS</title>
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
</head>
<body>
<div class="calculatrice">
<form action="" name="form">
<div class="ecran">
<input type="text" name="display" id="display" disabled>
<div class="button">
<input type="button" value="7" id="sept">
<input type="button" value="8" id="huit">
<input type="button" value="9" id="neuf">
<input type="button" value="/" id="division"><br/>
<input type="button" value="4" id="quatre">
<input type="button" value="5" id="cinq">
<input type="button" value="6" id="six">
<input type="button" value="*" id="multiplication"><br/>
<input type="button" value="1" id="un">
<input type="button" value="2" id="deux">
<input type="button" value="3" id="trois">
<input type="button" value="-" id="soustraction"><br/>
<input type="button" value="." id="virgule">
<input type="button" value="0" id="zero">
<input type="button" value="+" id="addition">
<input type="button" value="C" id="supprimer"><br/>
<input type="button" value="=" id="resultat">
</div>
</div>
</form>
</div>
<script src="script.js"></script>
</body>
</html>