-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div id="result"></div>
<label for="num1">Number 1</label>
<input type="number" placeholder="Enter the first number" name="num1" id="num1">
<label for="num2">Number 2</label>
<input type="number" placeholder="Enter the second number" name="num2" id="num2">
<button data-operation="+" id="add">Add</button>
<button data-operation="-" id="substraction">Substraction</button>
<button data-operation="/" id="divide">Divide</button>
<button data-operation="*" id="multiplication">Multiplication</button>
<button data-operation="%" id="remainder">Remainder</button>
</div>
<script src="app.js"></script>
</body>
</html>