-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest3.html
31 lines (30 loc) · 1.1 KB
/
test3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JavaScript Assignment 3</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 age = 15;
alert("i am " + age + " years old");
let visit = 14;
alert("You have visited this site" + visit + " times");
document.write("<h2>My Birthday Year is 2010</h2>");
document.write("<h2>Date type of my declared variable is number</h2>");
document.write(
"<h2>Jhon Deo order 5 T-shirt(s) on XYZ Clothing Store.</h2>"
);
</script>
</body>
</html>