This repository has been archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtask4.html
55 lines (48 loc) · 2.06 KB
/
task4.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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>navbar</title>
<link rel="stylesheet" href=" https://cc-bhu.github.io/web-development/assets/css/navbar.css">
<style>
section{
height: 100vh;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
h2{
margin: 60px;
font-family: Arial, Helvetica, sans-serif;
}
p{
margin-top: -30px;
font-size: 24px;
}
</style>
</head>
<body>
<nav class="navbar">
<div class="nav">
<a href="#Home">Home</a>
<a href="#About">About</a>
<a href="#Action">Action</a>
</div>
</nav>
<section id="Home">
<h2>Home section</h2>
<p style="color: rgb(27, 19, 77);">Welcome to the home section admin lorem</p>
</section>
<section id="About">
<h2>About section</h2>
<p style="color: rgb(177, 44, 11);">Welcome to the about section admin Lorem ipsum dolor sit amet consectetur adipisicing elit. Repudiandae cumque magnam doloremque voluptate labore nesciunt numquam, nihil ratione totam quae debitis dignissimos, temporibus nam molestiae, ipsum ea fugiat corporis quas reiciendis. Nulla, nostrum omnis. Rerum quo est ullam in totam nesciunt doloribus, omnis possimus rem nostrum magni suscipit iste architecto expedita eos consequatur minima maiores beatae, molestiae id voluptates labore exercitationem odit. Amet saepe consequuntur porro praesentium vel aspernatur, et quisquam ab vitae maxime id fuga deserunt, dicta, quis molestias officiis! Saepe laboriosam enim quia culpa. Exercitationem, similique.</p>
</section>
<section id="Action">
<h2>Action section</h2>
<p style="color: rgb(4, 51, 60);">Welcome to the action section admin</p>
</section>
</body>
</html>