-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.25 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Side Bar</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css"
integrity="sha512-DxV+EoADOkOygM4IR9yXP8Sb2qwgidEmeqAEmDKIOfPRQZOWbXCzLC6vjbZyy0vPisbH2SyW27+ddLVCN+OMzQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1 class="logo">LOGO</h1>
<ul class="ul-head">
<li>Home</li>
<li>About Us</li>
<li>Blog</li>
<li>Contact Us</li>
</ul>
<div class="iconic">
<i class="fa-solid fa-bars ba" onclick="hami()"></i>
<i class="fa-solid fa-xmark ba o" style="display: none;" onclick="closeic()"></i>
</div>
<div class="sidebar">
<h3 class="ham-item">Home</h3>
<hr>
<h3 class="ham-item">About Us</h3>
<hr>
<h3 class="ham-item">Blog</h3>
<hr>
<h3 class="ham-item">Contact Us</h3>
<hr>
</div>
</header>
<h1>Ayaan Responsive Header</h1>
<script src="app.js"></script>
</body>
</html>