-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (47 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
73 lines (47 loc) · 1.16 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Calculator </title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<html>
<head>
<meta charset="utf-8">
<title>Calculator</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet" type="text/css">
</head>
<body>
<div id="calculator">
<!-- <p> is optional (for css)-->
<div class="result">
<p></p>
</div>
<div class="clear">C</div>
<span class="operator">x<sup>2</sup></span>
<span class="operator">sqrt</span>
<span class="operator">÷</span>
<span>7</span>
<span>8</span>
<span>9</span>
<span class="operator">x</span>
<span>4</span>
<span>5</span>
<span>6</span>
<span class="operator">-</span>
<span>1</span>
<span>2</span>
<span>3</span>
<span class="operator">+</span>
<span class="operator">+/-</span>
<span>0</span>
<span class="operator">.</span>
<span id="equal">=</span>
<div id="dragos">Created by Lupei Dragos</div>
</div>
</body>
</html>
<script src="js/index.js"></script>
</body>
</html>