-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.html
39 lines (30 loc) · 1.12 KB
/
nav.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
<!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>Navbars</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="header">
<a href="#" class="logo"> <i class="fas fa-heartbeat"></i> medcare. </a>
<nav class="navbar">
<a href="index.html">home</a>
<a href="services.html">services</a>
<a href="about.html">about</a>
<a href="doctors.html">doctors</a>
<a href="contact.html">contact us</a>
<a href="book.html">book</a>
<a href="review.html">review</a>
<a href="blogs.html">blogs</a>
<button class="btn" style="margin-left: 5px;">Login</button>
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</header>
</body>
</html>