-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (43 loc) · 1.08 KB
/
index.html
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
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daljeet's Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#reviews">Reviews</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="hero">
<div class="hero-content">
<h1>Hello, I'm Daljeet</h1>
<p>Welcome to my portfolio website.</p>
</div>
</section>
<section id="about">
<!-- About Me content (unchanged) -->
</section>
<section id="projects">
<!-- Projects content (unchanged) -->
</section>
<section id="reviews">
<!-- Reviews content (unchanged) -->
</section>
<section id="contact">
<!-- Contact Me content (unchanged) -->
</section>
<footer>
<p>© 2023 Daljeet. All rights reserved.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>