-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path23th class.html
More file actions
94 lines (86 loc) · 2.11 KB
/
23th class.html
File metadata and controls
94 lines (86 loc) · 2.11 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
<!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>Document</title>
</head>
<body>
<!-- <p>Date:5/December/2023</p>
<p>Day: Thursday</p>
<p>Class=no </p> -->
<style>
h1 {
margin: 20px 0;
color: #fff;
}
.center {
text-align: center;
}
.nav-wrapper {
display: flex;
position: relative;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
margin: auto;
width: 90%;
height: 80px;
border-radius: 0 0 15px 15px;
padding: 0 25px;
z-index: 2;
background: #fff;
box-shadow: 0 1px 2px rgb(0, 0, 0 0.2);
}
.logo-container {
display: flex;
justify-content: center;
align-items: center;
}
.logo{
height: 60px;
}
.nav-tabs{
display: flex;
font-weight: 600;
font-size: 18px;
list-style: none;
}
.nav-tab:not(:last-child) {
padding: 10px 25px;
margin: 0;
border-right: 1px solid #eee;
}
</style>
<header>
<div class="nav-wrapper">
<div class="logo-container">
coding
</div>
<nav>
<input class="hidden" type="checkbox" id="menutoggle">
<label class="menu-btn" for="menutoggle">
<div class="menu"></div>
<div class="menu"></div>
<div class="menu"></div>
</label>
<div class="nav-container">
<ul class="nav-tabs">
<li class="nav-tab">HOME</li>
<li class="nav-tab">PRODUCTS</li>
<li class="nav-tab">SERVICES</li>
<li class="nav-tab">FAQS</li>
<li class="nav-tab">CONTACT</li>
<li class="nav-tab">CAREERS</li>
</ul>
</div>
</nav>
</div>
</header>
<div class="center">
<h1>Responsive nav bar</h1>
</div>
</body>
</html>