-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (43 loc) · 1.82 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
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="CodeHim">
<title>Calculator HTML Code Example</title>
<!-- Style CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="intro">
<h1>Calculator</h1>
<p>A calculator program in HTML, CSS, and JavaScript</p>
<main>
<!-- Start DEMO HTML (Use the following code into your project)-->
<div class="container calculator">
<div class="screen-item screen"> <span>screen</span></div>
<dl class="touche__box">
<dt class="clear-item"> <span>clear</span></dt>
<dt class="touche__box-item"> <span class="soustraction">_</span></dt>
<dt class="touche__box-item"><span class="sign">+</span></dt>
<dt class="touche__box-item clearme"> <span>7</span></dt>
<dt class="touche__box-item"> <span>8</span></dt>
<dt class="touche__box-item"> <span>9</span></dt>
<dt class="touche__box-item"><span class="sign">/</span></dt>
<dt class="touche__box-item"> <span>4</span></dt>
<dt class="touche__box-item"> <span>5</span></dt>
<dt class="touche__box-item"> <span>6</span></dt>
<dt class="touche__box-item"><span class="sign">x</span></dt>
<dt class="touche__box-item"> <span>1</span></dt>
<dt class="touche__box-item"> <span>2</span></dt>
<dt class="touche__box-item"> <span>3</span></dt>
<dt class="equal-item"><span class="sign-equal">=</span></dt>
<dt class="touche__box-item zero-item"> <span>0</span></dt>
<dt class="touche__box-item un-item"><span class="sign">.</span></dt>
</dl>
</div>
<!-- END EDMO HTML (Happy Coding!)-->
</main>
<script src="./js/script.js"></script>
</body>
</html>