-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
307 lines (252 loc) · 10.6 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<title>Aman Singh</title>
<link rel="icon" href="css/image.png">
<link rel="stylesheet" href="css/styles.css">
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
</head>
<body>
<!-- HEADER -->
<header>
<a href="#" class="logo">Portfolio</span> </a>
<button id="theme-toggle">
<span class="toggle-icon">
<i class="fas fa-sun"></i>
<i class="fas fa-moon"></i>
</span>
</button>
<div class="bx bx-menu" id="menu-icon"></div>
<ul class="navbar">
<li><a id="nava" href="#home">Home</a></li>
<li><a id="nava" href="#about">About</a></li>
<li><a id="nava" href="#services">Services</a></li>
<li><a id="nava" href="https://drive.google.com/file/d/1Lm0-retFFPFyfAoXg_Up27eJl9Ts2Izs/view?usp=sharing">Resume</a></li>
<li><a id="nava" href="#contact">Contact</a></li>
<li><a id="nava" href="#projects">Projects</a></li>
</header>
<!-- START HOME -->
<section class="home" id="home">
<div class="home-text">
<h5>Hello, I am</h5>
<h1>Aman Singh</h1>
<h5>I'm a <span style="color: var(--main-color);" class="input"></span></h5>
<p>Hey! I’m an 💻 Aspiring full-stack developer using the MERN stack to create seamless digital experiences. 🚀 Join me on this exciting journey! 🔥🔥</p>
<a href="https://drive.google.com/file/d/1Lm0-retFFPFyfAoXg_Up27eJl9Ts2Izs/view?usp=sharing" class="btn"><strong>Download CV</strong></a>
</div>
<div class="home-img">
<img src="css/image.png" alt="">
</div>
</section>
<!-- START ABOUT -->
<section class="about" id="about">
<div class="about-img">
<img src="css/aboutme.png" alt="">
</div>
<div class="about-text">
<h3>About Me</h3>
<h2>From cricket🏏 to coding💻, I've traded the pitch for the tech scene, and I'm thriving!</h2>
<p>A motivated B.Tech (2nd year) student passionate about technology and engineering, eager to leverage my skills in a forward-thinking organization. 💻✨ Committed to learning, teamwork, and problem-solving, I aim to make a positive impact while enhancing my professional growth through innovative projects. 🚀🤝</p>
<div class="main-btn">
<a href="#contact" class="btn"><strong>Contact Me</strong></a>
<a href="#resume" class="btn"><strong>Portfolio</strong></a>
</div>
</div>
</section>
<!-- start audio -->
<section class="audio-sec">
<div class="confused-img" style="text-align: center;">
<img src="confused.png" alt="confused">
</div>
<div class="audio-text">
<h2>Why BTech?<br>Why i am doing Engineering?</h2> <br>
<!-- <img src="play.png" id="icon"> -->
<audio id="myAudio" src="degree.mp3"></audio>
<button id="playButton" class="btn" onclick="playPause()"><i class='bx bx-play-circle'></i>Play</button>
<script>
var audio = document.getElementById("myAudio");
var playButton = document.getElementById("playButton");
function playPause() {
if (audio.paused) {
audio.play();
playButton.innerHTML = "<i class='bx bx-pause-circle' ></i>Pause";
} else {
audio.pause();
playButton.innerHTML = "<i class='bx bx-play-circle'></i>Play";
}
}
audio.onended = function () {
playButton.innerHTML = "<i class='bx bx-play-circle'></i>Play";
};
</script>
</div>
</section>
<!-- START SERVICES -->
<section class="services" id="services">
<div class="center">
<h3>WHAT I DO?</h3>
</div>
<div class="service-content">
<div class="row">
<i class='bx bx-desktop'></i>
<h3>Frontend Web Dev</h3>
<p>Forging the Future of the Web: Weaving Aesthetic Elegance and Seamless Functionality at the Front-End</p>
</div>
<div class="row">
<i class='bx bxs-brush'></i>
<h3>Designing</h3>
<p>Design is where creativity meets purpose—transforming ideas into visuals that inspire, communicate, and make an impact.</p>
<br>
</div>
<div class="row">
<i class="bx bxs-cloud"></i>
<h3>Cloud Tech</h3>
<p>Empowering limitless possibilities with the power of the cloud, connecting people, data, and ideas across the globe</p>
</div>
</div>
</section>
<!-- my projects -->
<section class="services" id="projects">
<div class="center">
<h3>PROJECTS</h3>
</div>
<div class="service-content projects">
<a href="https://genform-8x4o.onrender.com">
<div class="row">
<img src="css/genform.png" width="100%" alt="">
<h3>GenForm.ai<i class='bx bxs-right-arrow-circle'></i></h3>
<p>GGenForm AI automates customizable form creation with AI, analytics, and Stripe integration.</p>
</div>
</a>
<a href="https://amansingh0807.github.io/web-for-POE/">
<div class="row">
<img src="css/Web-for-POE.png" width="100%" alt="">
<h3>Web for POE<i class='bx bxs-right-arrow-circle'></i></h3>
<p>A web-based price optimization engine that utilizes data-driven insights to refine pricing strategies and boost profitability.</p>
</div>
</a>
<a href="https://bmarkecommerce.vercel.app/">
<div class="row">
<img src="css/B-mark.png" width="100%" alt="">
<h3>BMark<i class='bx bxs-right-arrow-circle'></i></h3>
<p>
BMark-Ecommerce is a platform for buyers and sellers, enabling seamless transactions and smooth communication with an integrated chat feature.</p>
</div>
</a>
<a href="https://amansingh-portfolio-one.vercel.app/">
<div class="row">
<img src="css/portfolio.png" width="100%" alt="">
<h3>Portfolio<i class='bx bxs-right-arrow-circle'></i> </h3>
<p>A showcase of my journey in tech, featuring projects in web development, innovative solutions, and my growing expertise in full-stack development.</p>
</div>
</a>
<a href="https://weather-app-beta-ashen-31.vercel.app/">
<div class="row">
<img src="css/WeatherApp.png" width="100%" alt="">
<h3>WeatherApp<i class='bx bxs-right-arrow-circle'></i> </h3>
<p>Effortlessly explore global weather with WeatherApp—your ultimate companion for accurate, real-time meteorological insights and forecasts.</p>
</div>
</a>
<a href="https://logo-maker-vert.vercel.app/">
<div class="row">
<img src="css/logoMaker.png" width="100%" alt="">
<h3>LogoMaker<i class='bx bxs-right-arrow-circle'></i></h3>
<p>Create professional logos and favicons effortlessly with our Logo Maker—simply input your details to generate customized designs for your brand.</p>
</div>
</a>
<a style="color: white;" href="https://github.com/Amansingh0807">
<div class="row">
<i class='bx bxl-github'></i>
<h3>For more..</h3>
<p>Visit My Github for more & more projects! </p>
</div>
</a>
</div>
</section>
<!-- CTA -->
<section class="cta" id="class">
<h4>Have A Project In Your Mind ?</h4>
<h2>Just Say <br>"Hello"</h2>
<a href="#contact" class="btn"> <strong>Hire Me</strong> </a>
</section>
<!-- RESUME -->
<section class="resume" id="resume">
<div class="center">
<h3>Education</h3>
</div>
<div class="resume-content">
<div class="box">
<h6>Sept 2020</h6>
<h4>Secondary Exam</h4>
<h5>CBSE- 83.98%</h5>
</div>
<div class="box">
<h6>May 2022</h6>
<h4>Senior Secondary Exam</h4>
<h5>CBSE - 87.2%</h5>
</div>
<div class="box">
<h6>September 2023 - Present</h6>
<h4>BTech IT </h4>
<h5>GGSIPU - 9.2 C.G.P.A</h5>
</div>
</div>
</section>
<!-- CONTACT ME -->
<section class="contact" id="contact">
<div class="center">
<h3>Contact Me</h3>
<br>
<a href="https://www.linkedin.com/in/amansingh08/"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://github.com/Amansingh0807"><i class="fa-brands fa-square-github"></i></a>
<a href="https://x.com/RealAman_Singh"><i class="fa-brands fa-x"></i></a>
</div>
<div class="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Email Address" required>
<input type="number" name="phone" placeholder="Contact">
<textarea name="Message" rows="10" cols="30" placeholder="Your Message" required></textarea>
<input type="submit" name="" value="Send" class="send-btn">
</form>
</div>
</section>
<!-- COPYRIGHT -->
<div class="copyright">
<p>Designed with ❤ by <b>Aman Singh</b></p>
</div>
<script src="https://unpkg.com/scrollreveal"></script>
<!-- LINK TO JS -->
<script src="js/script.js" charset="utf-8"></script>
<script src="script.js" charset="utf-8"></script>
<script>
var Typed = new Typed(".input", {
strings: [
"Full-Stack Aficionado",
"Frontend Fanatic",
"Cloud Conqueror",
"Tech Trailblazer",
"Collaborative, open to Innovate",
"Cricket ally",
],
typeSpeed: 60,
backSpeed: 60,
loop: true,
});
const toggleModeBtn = document.getElementById("toggle-mode");
const body = document.body;
toggleModeBtn.addEventListener("click", function () {
body.classList.toggle("dark-mode");
});
</script>
</body>
</html>