-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=VT323" rel=stylesheet>
</head>
<body>
<div id="contianer" class="container">
<div id="screen" class="screen"><p></p></div>
<div id='zero' class="button number"><p>0</p></div>
<div id='one' class="button number"><p>1</p></div>
<div id='two' class="button number"><p>2</p></div>
<div id='three' class="button number"><p>3</p></div>
<div id='four' class="button number"><p>4</p></div>
<div id='five' class="button number"><p>5</p></div>
<div id='six' class="button number"><p>6</p></div>
<div id='seven' class="button number"><p>7</p></div>
<div id='eight' class="button number"><p>8</p></div>
<div id='nine' class="button number"><p>9</p></div>
<div id='plus' class="button"><p>+</p></div>
<div id='minus' class="button"><p>-</p></div>
<div id='multiply' class="button"><p>*</p></div>
<div id='divide' class="button"><p>/</p></div>
<div id='decimal' class="button"><p>.</p></div>
<div id='equal' class="button"><p>=</p></div>
<div id='clear' class="button"><p>CLEAR</p></div>
<div id='delete' class="button"><p>DELETE</p></div>
</div>
<script src="scripts.js"></script>
</body>
</html>