-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
37 lines (24 loc) · 770 Bytes
/
index3.html
File metadata and controls
37 lines (24 loc) · 770 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS Exercises</title>
</head>
<body>
<p>JS Excercises</p>
<p>1: I'm <span id="myName"></span></p>
<p>2: My age is: <span id="myAge"></span></p>
<p>3: Age diff (Julia - Ale): <span id="ageDiff"></span></p>
<p>4: You are <span id="queloque"></span> than 21. <span id="ageDiff"></span></p>
<p>5: <span id="compareJulia"></span></p>
<p>6: <span id="alphabetically"></span><br>
6.1: <span id="firstElement"></span><br>
6.2: <span id="lastElement"></span><br>
6.3: <span id="loopElements"></span><br>
</p>
<h2>My Favorite Bands</h2>
<ul id="band-list"></ul>
<script src="./main3.js"></script>
</body>
</html>