-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 1.18 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
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>
<style>
span{
font-size: 11px;
font-family: monospace;
}
</style>
<script>
"use strict";
//console.log("Hello World!!");
//alert("Hello world");
//let result = confirm("Are you Amazing?");
//let result = prompt("Are you Amazing?");
//alert(result)
document.write("<b>LESSON 1: PRINT HELLO WORLD USING VARIABLES</b><br><br>");
let a = 4;
</script>
</head>
<body>
<h3>Learning Javascript</h3>
<ul>
<li>Code Structure</li>
<li>Variables</li>
<span>let, const, var</span>
<li>Data types</li>
<span></span>
<li>Interaction: alert, prompt, confirm</li>
<span>Hello text 1 2 3 4</span>
</ul>
<a href='js-exercise-1/index.html'>
<h2>Exercise 1 - Click here</h2>
</a>
<a href='js-exercise-2/index.html'>
<h2>Exercise 2 - Click here</h2>
</a>
<script src="" async defer></script>
</body>
</html>