-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
35 lines (31 loc) · 1.08 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
<!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>JavaScript Calculator</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="favicon.ico">
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<div class="wrapper">
<form id="calculator__form">
<input type="number" requried>
<select name="operation" id="operation__select" required>
<option value="add">+</option>
<option value="subtract">-</option>
<option value="multiply">×</option>
<option value="divide">÷</option>
<!-- Add your own operation here! -->
</select>
<input type="number" requried>
<button>=</button>
<input type="number" id="operation__result" disabled>
</form>
</div>
<script src="js/script.js"></script>
</body>
</html>