-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1009 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
35
36
<!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" />
<link
rel="shortcut icon"
href="https://cdn4.iconfinder.com/data/icons/technology-83/1000/object_programming_development_oriented_developer_object-oriented_programming_software-512.png"
type="image/x-icon"
/>
<title>OOP | JS</title>
<link rel="stylesheet" href="./css/index.css" />
</head>
<body>
<main>
<form>
<input
id="input1"
type="number"
placeholder="Enter Your First number.."
autofocus
/>
<input
id="input2"
type="number"
placeholder="Enter Your last number.."
/>
<button>Calculate</button>
</form>
<ul></ul>
</main>
<script src="./js/class.js"></script>
<script src="./js/index.js"></script>
</body>
</html>