-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.21 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS-Essentials</title>
</head>
<body>
<div>
<h1>
Welcome to another one of my JavaScript workouts. This code base is
based off of the JavaScript Essentials course from Udemy. - Carl
Redding.
</h1>
<ol>
<h3>
If you want to be able to open up your browser on the dom and you are
using visual studio code here is a couple steps to get you going.
</h3>
<li>Go to your extensions in VSCode</li>
<li>Type in `Live Server`</li>
<li>Download/Install `Live Server`</li>
<li>
Open your HTML file and hit command L and command O and it should
prompt open. If not, you can look to your bottom right and Live Server
should be there. If so click that to launch your page. If not, right
click and click "Launch Live Server. "
</li>
<li>If that doesn't work. Then google it!</li>
</ol>
</div>
<script src="./JS-Files/index.js"></script>
<script src="./JS-Files/Primitive-Data.js"></script>
</body>
</html>