Skip to content

Commit 12f8de6

Browse files
committedDec 27, 2021
add projects
1 parent d35989c commit 12f8de6

File tree

122 files changed

+4017
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+4017
-0
lines changed
 

‎index.js

Whitespace-only changes.

‎projects/Navbar-project/index.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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>Sahand Ghavidel</title>
8+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
9+
<link rel="stylesheet" href="styles.css">
10+
</head>
11+
<body>
12+
<nav>
13+
<div class="nav-main">
14+
<div class="nav-header">
15+
<img src="./logo.svg" alt="logo">
16+
<i class="fa fa-bars" aria-hidden="true"></i>
17+
</div>
18+
<ul class="menu">
19+
<li>
20+
<a href="#">Home</a>
21+
</li>
22+
<li>
23+
<a href="#">About</a>
24+
</li>
25+
<li>
26+
<a href="#">Contact</a>
27+
</li>
28+
</ul>
29+
</div>
30+
31+
</nav>
32+
<script src="index.js"></script>
33+
</body>
34+
</html>

0 commit comments

Comments
 (0)