-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnavbar.html
More file actions
132 lines (113 loc) · 3.55 KB
/
Copy pathnavbar.html
File metadata and controls
132 lines (113 loc) · 3.55 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
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
<!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://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles/navbar.css">
<!-- <style>
@import url(./font/font.css);
* {
margin: 0;
padding: 0;
}
/* i {
border: solid #a4a9be;
border-width: 0px 2px 2px 0px;
display: inline-block;
padding: 3px;
transform: rotate(45deg);
} */
#navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 30px;
background-color: transparent;
font-family: 'PT Root UI Medium', sans-serif;
font-size: 14px;
color: #34393d;
}
#navbar>div {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px
}
#navLogo {
width: 145px;
height: 45px;
}
#language {
padding: 5px 15px;
margin-left: -20px;
font-size: 14px;
font-family: 'PT Root UI Bold', sans-serif;
background-color: transparent;
border-radius: 5px;
border: 1px solid #a4a9be;
}
#language:hover {
background-color: #ebedf0;
}
.nav_menu {
font-family: 'PT Root UI Regular', sans-serif;
color: #34393d;
}
.nav_menu>a {
text-decoration: none;
color: #34393d;
}
.nav_menu>a:hover {
color: #0370F0;
}
.drop-down:hover {
color: #0370F0;
cursor: pointer;
}
#nav_login {
font-family: 'PT Root UI Bold', sans-serif;
text-decoration: none;
color: #34393d;
}
#nav_login:hover {
color: #0370F0;
}
#nav_signin {
font-family: 'PT Root UI Bold', sans-serif;
color: #0370F0;
border: 1px solid;
padding: 5px 15px;
border-radius: 5px;
text-decoration: none;
}
#nav_signin:hover {
background-color: #0370F0;
color: white;
}
</style> -->
</head>
<body>
<div id="navbar">
<div>
<a href=""><img src="https://tmetric.com/images/tmetric_logo_with_text.svg" id="navLogo" alt=""></a>
<button id="language">EN</button>
</div>
<div>
<div class="nav_menu drop-down">Why TMetric <i class="fa fa-angle-down"></i></div>
<div class="nav_menu drop-down">Apps & Integrations <i class="fa fa-angle-down"></i></div>
<div class="nav_menu"><a href="pricing.html">Pricing</a></div>
<div class="nav_menu"><a href="support.html">Support</a></div>
<div class="nav_menu"><a href="blog.html">Blog</a></div>
</div>
<div>
<a href="login.html" id="nav_login">Log In</a>
<a href="signup.html" id="nav_signin">Sign Up</a>
</div>
</div>
</body>
</html>