-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 767 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Step Debugging</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<!-- If you include here, the document may not be ready -->
<!-- <script src="js/index.js"></script> -->
</head>
<body>
<h1>Step debugging demonstration</h1>
<h4>Numbers</h4>
<div id="output-numbers"></div>
<h4>Recursive Addition</h4>
<div id="recursive-addition"></div>
<h4>AJAX Response : Cities - <button id='load-cities'>Load Cities!</button></h4>
<div id="output-cities"></div>
<script src="src/index.js"></script>
</body>
</html>