-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathindex.html
34 lines (33 loc) · 926 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Silly Calculator</title>
<style type="text/css" media="screen">
input, div {
display:inline-block;
}
input {
width: 5em;
}
input, div, button, select{
font-size:large;
}
</style>
</head>
<body>
<h1>Silly Calculator</h1>
<input type="text" name="" id="num1" value="1" />
<select id="operator" size="1">
<option value="add">+</option>
<option value="substract">-</option>
</select>
<input type="text" id="num2" value="1" />
<div>=</div>
<input type="text" id="ans" value="2" />
<button id="go_btn">Go!</button>
<script src="calculator.js" type="text/javascript" charset="utf-8"></script>
<script src="main.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>