-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (46 loc) · 1.21 KB
/
Copy pathindex.html
File metadata and controls
48 lines (46 loc) · 1.21 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<div id="resultat">
<div id="operande1"></div>
<div id="operation"></div>
<div id="operande2"></div>
</div>
<div id="calculette">
<div class="paveNumerique">
<div class="ligne">
<div id="un">1</div>
<div id="deux">2</div>
<div id="trois">3</div>
</div>
<div class="ligne">
<div id="quatre">4</div>
<div id="cinq">5</div>
<div id="six">6</div>
</div>
<div class="ligne">
<div id="sept">7</div>
<div id="huit">8</div>
<div id="neuf">9</div>
</div>
<div class="ligne placeZero">
<div id="zero">0</div>
</div>
</div>
<div id="operande">
<div id="plus">+</div>
<div id="moins">-</div>
<div id="multiplier">x</div>
</div>
</div>
<script src="assets/js/jquery-3.1.1.min.js" charset="utf-8"></script>
<script src="assets/js/app.js" charset="utf-8"></script>
</body>
</html>