-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
22 lines (22 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Asynchronous JavaScript</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="main.js"></script>
<script src="callback.js"></script>
<script src="promise.js"></script>
<script src="async-await.js"></script>
</head>
<body>
<h1>Asynchronous JavaScript</h1>
<ol>
<li>Fork and pull down <a href="https://github.com/SLC-JS-Learners/2019-02--Asynchronous-JavaScript">https://github.com/SLC-JS-Learners/2019-02--Asynchronous-JavaScript</a><br />OR<br />Download and unzip <a href="https://github.com/SLC-JS-Learners/2019-02--Asynchronous-JavaScript/archive/master.zip">https://github.com/SLC-JS-Learners/2019-02--Asynchronous-JavaScript/archive/master.zip</a></li>
<li>Open the project in your editor of choice. (Sean recommends <a href="https://code.visualstudio.com/">VS Code</a></li>
<li>Open the index.html file from the project in the web browser of your choice.</li>
<li>Open the browser's console for the index page.</li>
</ol>
</body>
</html>