-
Notifications
You must be signed in to change notification settings - Fork 0
/
webdev.html
87 lines (80 loc) · 1.38 KB
/
webdev.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<html>
<head>
<title>WEBSITE</title>
<style>
.head1 {
font-size : 40px;
color : #009900;
font - weight : bold;
}
.head2 {
font-size: 17px;
margin-left:10px;
margin-bottom: 15px;
}
body{
margin : 0 auto;
background-position: center;
background-size: contain;
}
.menu {
position: sticky;
top : 0;
background-color: #009900;
padding : 10px 0px 0px;
color : white;
margin: 0 auto;
overflow : hidden;
}
.menu a{
float : left;
color :white;
text-align: center;
padding : 10px 16px;
text-decoration: none;
font-size: 20px;
}
.menu-log{
right : auto;
float : right;
}
footer{
width : 100%;
bottom : 0px;
background-color: #000;
color : #fff;
position: absolute;
padding-top: 20px;
padding-bottom: 50px;
text-align: center;
font-size: 30px;
font-weight: bold;
}
.body_sec{
margin-left: 20px;
}
</style>
</head>
<body> <!--Header section-->
<header>
<div class="head1">Kartik Awadh Yadav</div>
<div class="head2">A Software dev company</div>
</header>
<!--menu navigation bar-->
<nav class="menu">
<a href="#home">HOME</a>
<a href="#news">NEWS</a>
<a href="#notification">NOTIFICATION</a>
<div class="menu-log">
<a href="#login">LOGIN</a>
</div>
</nav>
<main class="body_sec">
<section id="content">
<h3>Content section</h3>
</section>
</main>
<footer>Footer section</footer>
<p>
</body>
</html>