-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile.html
More file actions
22 lines (22 loc) · 839 Bytes
/
file.html
File metadata and controls
22 lines (22 loc) · 839 Bytes
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JAVASCRIPT CONCEPT 2</title>
<link rel="stylesheet" href="file.css">
</head>
<body>
<h1>Hello JavaScript Part-2 !</h1>
<!-- <script src="Array.js"></script> -->
<!-- <script src="array2.js"></script> -->
<!-- <script src="for loop.js"></script> -->
<!-- <script src="while Loop.js"></script> -->
<!-- <script src="Favourite Movie guess game.js"></script> -->
<!-- <script src="Break Keyword.js"></script> -->
<!-- <script src="Loops with Array.js"></script> -->
<!-- <script src="Nested Loops With Nested Array.js"></script> -->
<script src="For of Loop.js"></script>
<!-- <script src="Nested For of loop.js"></script> -->
</body>
</html>