-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (68 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sarvesh Soni - Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body class="index">
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index_1.html">Achievements</a></li>
<li><a href="index_2.html">About Me</a></li>
<li><a href="index_3.html">More</a></li>
</ul>
<button id="dark-mode-toggle">Toggle Dark Mode</button>
</nav>
</header>
<main>
<section class="hero">
<div class="container">
<h1>Sarvesh Soni</h1>
<p>Welcome to my portfolio website. Explore my achievements, projects, and more.</p>
</div>
</section>
<section class="about">
<div class="container">
<h2>About Me</h2>
<p>Hello, this is Sarvesh Soni's portfolio website. I am passionate about coding and technology.</p>
</div>
</section>
<section class="projects">
<div class="container">
<h2>Projects</h2>
<div class="project-card">
<h3>Project Title</h3>
<p>Project description goes here.</p>
</div>
<!-- Add more project cards here -->
</div>
</section>
<section class="contact">
<div class="container">
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2023 Sarvesh Soni | Portfolio</p>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>