forked from divya06sangle/Portfolio-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
118 lines (109 loc) · 3.75 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Enhanced Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Header Section-->
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#experience">Work Experience</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#contact">Contact</a></li>
<li><button id="toggleDarkMode">Toggle Dark Mode</button></li>
</ul>
</nav>
<div class="hero">
<h1>Welcome to My Portfolio</h1>
<h1>Divya this side</h1>
<p>A showcase of my work and skills</p>
<p>This is new project</p>
</div>
</header>
<!--Projects Section-->
<section id="projects">
<h2>Projects</h2>
<button class="filter-btn" data-category="all">All</button>
<button class="filter-btn" data-category="web">Web Development</button>
<button class="filter-btn" data-category="app">App Development</button>
<div class="projects-grid">
<div class="project-item" data-category="web">
<h3>Project 1: Web Development</h3>
<p>Description of Project 1</p>
<p>This is the new file</p>
<a href="#">View Project</a>
</div>
<div class="project-item" data-category="app">
<h3>Project 2: App Development</h3>
<p>Description of Project 2</p>
<p>This is new
-q+project</p>
<a href="#">View Project</a>
</div>
<!-- Add more projects as needed -->
</div>
</section>
<!-- Work Experience Section -->
<section id="experience">
<h2>Work Experience</h2>
<ul>
<li>
<h3>Job Title 1</h3>
<p>Company Name, Year</p>
<p>Brief description of job responsibilities.</p>
</li>
<li>
<h3>Job Title 2</h3>
<p>Company Name, Year</p>
<p>Brief description of job responsibilities.</p>
</li>
</ul>
</section>
<!-- Education Section -->
<section id="education">
<h2>Education</h2>
<ul>
<li>
<h1>Degree 1</h1>
<p>Institution Name, Year</p>
</li>
<li>
<h3>Degree 2</h3>
<p>Institution Name, Year</p>
<p>This is new project</p>
</li>
</ul>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact Me</h2>
<form id="contactForm">
<label for="name">Name:</label>
<!--<input type="text" id="name" name="name" required>-->
<input type="text" id="name" name="name">
<label for="email">Email:</label>
<input type="text" id="email" name="email">
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea>
<button type="submit">Send Message</button>
</form>
<p id="formFeedback" class="hidden">Your message has been sent!</p>
</section>
<!-- Footer -->
<footer>
<p>© 2024 My Portfolio</p>
<div class="social-media">
<a href="#">LinkedIn</a>
<a href="#">GitHub</a>
<a href="#">Twitter</a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>