-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (46 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Welcome to My Personal Website">
<title>Your Name - Personal Website</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file for styling -->
</head>
<body>
<header>
<nav class="navbar">
<ul class="nav-list">
<li class="nav-item"><a href="index.html">Home</a></li>
<li class="nav-item"><a href="about.html">About Me</a></li>
<li class="nav-item"><a href="portfolio.html">Portfolio</a></li>
<li class="nav-item"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="home">
<h1>Welcome to My Personal Website</h1>
<p>Hello, I'm Sammy Sharief, and this is my corner of the internet where I share my thoughts and projects.</p>
</section>
<section id="about">
<h2>About Me</h2>
<p>I am a Computer Science Masters's Student based in Montreal, Canada. I love [Some of Your Interests].</p>
</section>
<section id="portfolio">
<h2>Portfolio</h2>
<p>Check out some of my projects and creations:</p>
<ul>
<li><a href="#">Project 1</a></li>
<li><a href="#">Project 2</a></li>
<li><a href="#">Project 3</a></li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>If you'd like to get in touch, feel free to reach out at [email protected].</p>
</section>
<footer>
<p>© 2023 Sammy Sharief. All rights reserved.</p>
</footer>
</body>
</html>