-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
36 lines (35 loc) · 1.08 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PROJECT</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li> <!-- Link to the about page -->
<li><a href="project.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
</head>
<body>
<section id="projects">
<div class="container">
<h2>PROJECTS</h2>
</div>
</section>
</body>
<footer>
<a href="https://github.com/Manshi332" target="_blank">GitHub</a>
<a href="mailto:manshiprajapati332@example.com">Gmail</a>
<a href="https://www.linkedin.com/in/Manshi" target="_blank">LinkedIn</a>
</footer>
<script src="script.js"></script>
</html>