-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (45 loc) · 1.12 KB
/
index.html
File metadata and controls
54 lines (45 loc) · 1.12 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>NEWSPAPER WEBSITE</title>
</head>
<body>
<h1><b> HTML WEBSITE </b> </h1>
<!-- Begin Content -->
<div>
<form name="search" action="" id="search-form">
<input type="text" class="txt" value="Search" />
</form>
</div>
<!-- Main Navigation -->
<ul id="nav">
<li><a href="#">HOME</a></li>
<li><a href="#">NEWSLETTER</a></li>
<li><a href="#">BLOG</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">CONTACT</a></li>
</ul>
<!-- Body Content -->
<h1
style="color: green; font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif">
PAKISTAN ZINDABAD 💚</h1>
<div class="content-right"></div>
<h2>WELCOME</h2>
<!-- Begin Footer -->
<div id="footer">
<ul id="footer-nav">
<li><a href="#">HOME</a></li>
<li><a href="#">MAGZINE</a></li>
<li><a href="#">BLOG</a></li>
<li><a href="#">SERVICES</a></li>
<li><a href="#">CONTACT US</a></li>
<li><a href="#">NEWSLETTER</a></li>
</ul>
</div>
<style>
a {
text-decoration: none;
}
</style>
</body>
</html>