-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 927 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
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CSE 110 Lab 4 - Debugging</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
font-family: sans-serif;
}
input {
margin-bottom: 10px;
}
section {
margin-bottom: 50px;
}
</style>
</head>
<body>
<section>
<h2>Expose</h2>
<button id="fetchData">Fetch Data</button>
</section>
<section>
<h2>Explore</h2>
<label for="num1">First number: </label>
<input id="num1">
<br />
<label for="num2">Second number: </label>
<input id="num2">
<br />
<button id="printSum"> Calculate </button>
<p id="sum">Sum: </p>
</section>
<script type="module" src="expose.js"></script>
<script type="module" src="explore.js"></script>
</body>
</html>