-
Notifications
You must be signed in to change notification settings - Fork 0
/
page4.html
32 lines (31 loc) · 1.01 KB
/
page4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page 4</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<a href="index.html"><b> Home</b></a>
<a href="page1.html"><b>Page1</b></a>
<a href="page2.html"><b>page2</b></a>
<div class="dropdown">
<button class="dropbtn">More</button>
<div class="dropdown-content">
<a href="page3.html">Page 3</a>
<a href="page4.html">Page 4</a>
<a href="page5.html">Page 5</a>
</div>
</div>
<a href="aboutus.html"><b>about us</b></a>
<a href="contactus.html"><b>Contact us</b></a>
</nav>
<h1 style="height: 65vh;">This is page 4</h1>
<footer>
<div class="footer-section"><b >All rights reserved © M A Noman</b></div>
</footer>
</body>
</html>