-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest2.html
39 lines (38 loc) · 1.33 KB
/
test2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JavaScript Assignment 2</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>
let userName = "Hello User";
let myName = "Jhone Deo";
let age = "15 years old";
let message = "Certified Mobile Application Development";
let piz = "PIZZA \n PIZZ \n PIZ \n PI \n P \n";
let email = "muhammadasad852233@gmail.com";
let msg =
"I am trying to learn from the book a smart \n way to learn JavaScript";
let design = "“▬▬▬▬▬▬▬▬▬ஜ ۩۞۩ ஜ▬▬▬▬▬▬▬▬▬”";
alert(userName);
alert(myName);
alert(age);
alert(message);
alert(piz);
alert(email);
alert(msg);
alert(design);
</script>
</body>
</html>