-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav2.html
More file actions
106 lines (97 loc) · 2.6 KB
/
nav2.html
File metadata and controls
106 lines (97 loc) · 2.6 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>navigation with box</title>
<style>
*{
padding: 0;
margin: 0;
}
:root{
--back:rgb(255, 255, 255);
--primary-color:rgb(0, 0, 0);
--text-color:rgb(255, 255, 255);
}
header{
position: sticky;
top: 0;
}
nav{
border: 2px solid black;
background-color: black;
padding: 25px ;
}
nav ul li{
display: inline;
list-style: none;
color:var(--text-color) ;
padding: 50px ;
}
.boxes{
border: 1px solid black;
background-color: #FAFFAF ;
/* padding: 22px; */
margin: 9px 22px;
}
.box1{
border: 1px solid black;
background-color: #3FA2F6 ;
padding: 221px;
margin: 55px;
display: inline-block;
}
.box2{
border: 1px solid black;
background-color: #0F67B1 ;
padding: 221px;
margin: 55px;
display:inline-block;
}
.capsule{
background-color: #E7D4B5;
border: 2px solid black;
margin: 33px;
padding: 80px;
border-radius: 222px;
}
.icon{
/* border: 2px solid black; */
border-radius: 60px;
background-color: #B6C7AA;
padding: 20px;
/* margin: 35px; */
position:fixed;
bottom: 45px;
width: 23px;
height: 32px;
right: 23px;
}
footer{
border: 2px solid black;
padding: 50px;
color: white;
background-color: #76ABAE;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li>home</li>
<li>about</li>
<li>contact</li>
</ul>
</nav>
</header>
<div class="boxes">
<div class="box1"><h1>hello_</h1></div>
<div class="box2"><h1>bye_</h1></div>
</div>
<div class="capsule"><h2> <center> Welcome to this Sigma Web Development Express</center></h2></div>
<div class="icon"></div>
<footer>this is footer</footer>
</body>
</html>