-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1011 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevOps is Cool</title>
<link rel="stylesheet" href="style/style_new.css">
<link rel="icon" href="imgs/favicon.ico" type="image/x-icon">
<script type="module" src="scripts/script.js" defer></script>
</head>
<body>
<h2>EHB Super Complicated Calculator</h2>
<form>
<label for="num1">Number 1:</label>
<input id="num1" name="num1" required>
<br>
<label for="num2">Number 2:</label>
<input id="num2" name="num2" required>
<br>
<input type="submit" id="addButton" value="Add">
<input type="submit" id="subButton" value="Subtract">
<input type="submit" id="mulButton" value="Multiply">
<input type="submit" id="divButton" value="Divide">
</form>
<h3>Result</h3>
<p id="result"></p>
</body>
</html>