-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.04 KB
/
Copy pathindex.html
File metadata and controls
37 lines (34 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - Shalu Khebang</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<a href="index.html" class="logo">PORTFOLIO</a>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</nav>
<section class="hero">
<div class="hero-left">
<div class="hero-text-box">
<h1>Shalu Khebang</h1>
<p class="hero-subtitle">A Front-end Developer</p>
</div>
</div>
<div class="hero-right">
<div class="hero-photo-frame">
<img src="images/shalu.png" alt="Shalu Khebang">
</div>
</div>
</section>
</body>
</html>