-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (124 loc) · 4.19 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Portfolio – Abhishek Yadav</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicon.png">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Header -->
<header class="header">
<div class="header-inner">
<div class="logo">AY</div>
<nav class="nav" id="navMenu">
<ul>
<li><a href="#work">Work</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Two-line hamburger button for mobile menu -->
<button class="hamburger" id="hamburger" aria-label="Toggle navigation menu">
<span></span>
<span></span>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>Hello, I'm Abhishek Yadav</h1>
<p class="subtitle">Full Stack Developer</p>
<a href="#work" class="btn-primary">View Projects</a>
</div>
</section>
<!-- Work Section -->
<section id="work" class="work-section">
<div class="container">
<h2>Recent Work</h2>
<div class="projects-container">
<div class="project-card">
<h3>New Vision E-commerce</h3>
<p>A full-featured online store for a machine manufacturing company.</p>
<button class="btn-secondary">Ecommerce</button>
</div>
<div class="project-card">
<h3>Portfolio Websites</h3>
<p>Modern, responsive sites with smooth animations and clean design.</p>
<button class="btn-secondary">Web Design</button>
</div>
<div class="project-card">
<h3>Business Landing Pages</h3>
<p>High-conversion landing pages optimized for user engagement.</p>
<button class="btn-secondary">Landing Page</button>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="skills-section">
<div class="container">
<h2>Skills</h2>
<div class="skills-container">
<div class="skill-box">
<h4>Python</h4>
<p>Expert</p>
</div>
<div class="skill-box">
<h4>Java</h4>
<p>Intermediate</p>
</div>
<div class="skill-box">
<h4>HTML</h4>
<p>Expert</p>
</div>
<div class="skill-box">
<h4>CSS</h4>
<p>Expert</p>
</div>
<div class="skill-box">
<h4>React</h4>
<p>Beginner</p>
</div>
<div class="skill-box">
<h4>C/C++</h4>
<p>Intermediate</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about-section">
<div class="container">
<h2>About Me</h2>
<p>
I'm a Full Stack Web Developer with extensive experience in creating modern web applications. I specialize in clean design, intuitive interactions, and innovative solutions.
</p>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<div class="container contact-container glass">
<h2>Get in Touch</h2>
<form action="https://formspree.io/f/xanqrpwj" method="POST" class="contact-form">
<label for="email">Your Email:</label>
<input type="email" name="email" id="email" placeholder="your-email@example.com" required>
<label for="message">Your Message:</label>
<textarea name="message" id="message" rows="5" placeholder="Type your message here..." required></textarea>
<button type="submit" class="btn-primary">Send Message</button>
</form>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2025 Abhishek Yadav. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>