-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
52 lines (43 loc) · 1.92 KB
/
about.html
File metadata and controls
52 lines (43 loc) · 1.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About</title>
<!-- Google Font (same as index) -->
<link href="https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Global styles -->
<link rel="stylesheet" href="css/base.css">
<!-- Layout (navbar / footer if used) -->
<link rel="stylesheet" href="css/layout.css">
<!-- Reusable components -->
<link rel="stylesheet" href="css/components.css">
<!-- Animations -->
<link rel="stylesheet" href="css/animations.css">
<!-- About page styles -->
<link rel="stylesheet" href="css/pages/about.css">
</head>
<body>
<!-- ABOUT SECTION -->
<div class="about-section-wrapper">
<section class="about-section">
<div class="about-card">
<div class="about-content">
<h1 class="about-title">About Me</h1>
<p class="about-desc">
I’m Amit Kumar Yadav, a Computer Science student passionate about AI, Cloud Computing, and Automation, focused on building impactful technology solutions.<br><br>
Currently, I serve as a Microsoft Student Ambassador, Global AI Bootcamp Amravati Organizer and AWS Cloud Club Captain , leading initiatives that empower students to learn, innovate, and collaborate.
</p>
<div class="about-buttons">
<a href="https://portfolioimage.blob.core.windows.net/images/Amit%20Kumar%20Yadav.pdf" class="about-btn outline" target="_blank" id="downloadResume">Download Resume</a>
<a href="#projects" class="about-btn filled">View Projects</a>
</div>
</div>
<div class="about-image">
<img src="https://portfolioimage.blob.core.windows.net/images/Amit1.jpeg" alt="Butterfly" class="butterfly-img" />
</div>
</div>
</section>
</div>
</body>
</html>