-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathportfolio.html
More file actions
49 lines (46 loc) · 1.49 KB
/
portfolio.html
File metadata and controls
49 lines (46 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Home</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="css/portfolio.css">
</head>
<body>
<header>
<div class="logo">MyPortfolio</div>
<nav>
<ul id="nav-links">
<li><a href="#" class="nav-link">Home</a></li>
<li><a href="#" class="nav-link">Peojects</a></li>
<li><a href="#" class="nav-link">Services</a></li>
<li><a href="#" class="nav-link">Contact</a></li>
<li class="mobile-logout" onclick="logout()" style="display: none">
<a href="#"><i class="fas fa-sign-out-alt"></i> Logout</a>
</li>
</ul>
</nav>
<button class="logout-btn" onclick="logout()">
<i class="fas fa-sign-out-alt"></i> Logout
</button>
<div class="hamburger" id="hamburger">
<div></div>
<div></div>
<div></div>
</div>
<div class="close-btn" id="closeBtn" style="display: none;">✖</div>
</header>
<section class="hero">
<h1>Welcome to Demo Home Page</h1>
<p>This is the home section of my portfolio</p>
<div class="hero-bg"></div>
</section>
<script src="js/portfolio.js"></script>
</body>
</html>