-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JavaScript Assignment 1</title>
<link rel="shortcut icon" href="javascript-logo.png" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="nav">
<a href="index.html"><button>First Assignment</button></a>
<a href="test2.html"><button>Second Assignment</button></a>
<a href="test3.html"><button>Third Assignment</button></a>
<a href="test4.html"><button>Fourth Assignment</button></a>
<a href="test5.html"><button>Fifth Assignment</button></a>
</div>
<script>
alert("Error! Please enter a valid password.");
alert("Welcome to JS Land...\nHappy Coding!\n");
alert("Welcome to JS Land...");
alert("Happy Coding!");
console.log("Hell...I can JS through my web browse's console");
console.log("Sir Good Hogaya 1st Assignment ok hy?");
</script>
</body>
</html>