-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.html
147 lines (120 loc) · 2.77 KB
/
navbar.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!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>revvNavbar</title>
<!-- <link rel="stylesheet" href="navbar.css"> -->
<style>
#navbarAll{
display: flex;
/* border: 1px solid red; */
width: 100%;
height: 60px;
background-color: rgb(255,255,255);
justify-content:space-between;
/* padding-right: 20%; */
padding-left: 7%;
position:fixed;
left: 0%;
top: 0%;
}
#navbtt{
display: flex;
gap: 20px;
width: 40%;
margin-right: 20px;
/* border: 1px solid red; */
/* align-items: center; */
justify-content:flex-end;
position:fixed;
top: 10px;
right: 31%;
/* text-decoration: none; */
/* text-decoration:dotted; */
}
#navbtt>button{
height:40px;
width: 180px;
cursor: pointer;
/* font-size:100%; */
/* font-style: italic; */
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background-color: rgb(255,255,255);
border: 1px solid rgb(197, 213, 227) ;
font-family: Poppins;
font-size: 18px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
letter-spacing: normal;
/* text-align: left; */
padding: 10px 0;
}
#navbtt>button>a:hover{
color:cyan;
}
#navsubcrip>button>a:hover{
color:cyan;
}
#navbtt>button>a{
text-decoration:dotted;
color: #000;
}
#navsubcrip>button>a{
text-decoration:dotted;
color: #000;
}
#navsubcrip>button{
background-color: white;
border: 1px solid rgb(197, 213, 227) ;
cursor: pointer;
}
#navsubcrip{
display: flex;
/* gap: 20px; */
width: 60%;
/* margin-right: 20px; */
justify-content:space-around;
position:fixed;
top: 10px;
right: 25%;
/* border: 1px solid red; */
cursor: pointer;
}
#log{
display: flex;
gap: 10px;
padding-right: 15%;
cursor: pointer;
/* width: 75%; */
}
#log>button:hover{
color:rgb(13, 218, 218);
cursor: pointer;
}
#log>button{
background-color: rgb(255,255,255);
border: 1px solid rgb(255,255,255);
}
#log>img{
width: 30px;
}
</style>
</head>
<body>
<div id="navbarAll">
<img src="https://www.revv.co.in/grapheneImages/newopen/logo.svg" alt="" srcset="">
<div id="log">
<p>FAQs</p>
<img src="https://www.revv.co.in/grapheneImages/newopen/ic-web-profile-login.svg" alt="" srcset="">
<button>Login or Signup</button>
</div>
</div>
<div id="navbtt">
<button><a href="hyundai.html">Hyundai Subscription</a> </button>
<button><a href="mahindra.html">Mahindra Subscription</a></button>
</div>
</body>
</html>