-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manshi Prajapati</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>
<li><a href="project.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="hero">
<div class="hero-content">
<div class="profile">
<img src="profile.jpg" alt="Your Photo" class="profile-image">
<h1 id="name">Manshi Prajapati</h1>
</div>
</div>
<div class="hero-content">
<p id="wlcm">Welcome to My Website</p>
<p id="intro">Exploring the world of coding and beyond.</p>
<a href="#about" class="btn">Learn More</a>
<a href="https://github.com/Manshi332" class="btn github-btn">GitHub</a>
</div>
</section>
<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>
</body>
</html>