-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtuesdaylabjsplay.html
More file actions
38 lines (30 loc) · 856 Bytes
/
tuesdaylabjsplay.html
File metadata and controls
38 lines (30 loc) · 856 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Prof. Frank Emanuel">
<meta name="email" content="emanuef@algonquincollege.com">
<meta name="date" content="2022-06-14">
<title>ECMA Script is Fun!!!</title>
<script>
function foo() {
console.log("Hello world!");
secondpara.innerText = "hey there";
}
</script>
</head>
<body>
<header>ECMA Script is Fun!!!</header>
<p>Hello there!</p>
<p id="secondpara">whoah, how did I get here?</p>
<script>foo();</script>
<ol>
<li>This is the stuff</li>
</ol>
<p class="inlist">Hello there people.</p>
<ol start="2">
<li>Oh, back again</li>
</ol>
</body>
</html>