Skip to content

Commit e62d161

Browse files
clean files 2
1 parent ad2a96d commit e62d161

File tree

9 files changed

+38
-34
lines changed

9 files changed

+38
-34
lines changed

projects/Navbar-project/index.html

-34
This file was deleted.

projects/navbar/index.html

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Navbar project</title>
8+
<link
9+
rel="stylesheet"
10+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
11+
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
12+
crossorigin="anonymous"
13+
/>
14+
<link rel="stylesheet" href="styles.css" />
15+
</head>
16+
<body>
17+
<nav>
18+
<div class="nav-main">
19+
<div class="nav-header">
20+
<img src="./logo.svg" alt="logo" />
21+
<i class="fa fa-bars" aria-hidden="true"></i>
22+
</div>
23+
<ul class="menu">
24+
<li>
25+
<a href="#">Home</a>
26+
</li>
27+
<li>
28+
<a href="#">About</a>
29+
</li>
30+
<li>
31+
<a href="#">Contact</a>
32+
</li>
33+
</ul>
34+
</div>
35+
</nav>
36+
<script src="index.js"></script>
37+
</body>
38+
</html>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)