-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (108 loc) · 3.56 KB
/
index.html
File metadata and controls
122 lines (108 loc) · 3.56 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ahmadullah Laskar - Portfolio</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Top Navigation -->
<header class="topnav">
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#extracurricular">Extracurricular</a></li>
</ul>
</nav>
</header>
<div class="container">
<!-- Sidebar -->
<aside class="sidebar">
<img src="profile.jpg" alt="Ahmadullah Laskar" class="profile-pic" />
<h1>Ahmadullah Laskar</h1>
<p>B.Tech in AI & DS, KL University (2023–2027)</p>
<p>Web Developer • AI Enthusiast • Open Source Contributor</p>
<p class="location">📍 Vaddeswaram, Andhra Pradesh, India</p>
<p><strong>Contact:</strong><br>
<a href="mailto:ahmadullahlaskar2004@gmail.com">ahmadullahlaskar2004@gmail.com</a>
</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/ahmadullahlaskar" target="_blank">LinkedIn</a>
<a href="https://github.com/AhmadullahLaskar" target="_blank">GitHub</a>
</div>
</aside>
<!-- Main Content -->
<main class="content">
<!-- About -->
<section id="about">
<h2>About Me</h2>
<p>
I am a passionate developer with a strong interest in web technologies,
AI, and open-source projects. I love building things that solve real-world problems.
I’m currently pursuing B.Tech in Artificial Intelligence & Data Science from KL University.
</p>
</section>
<!-- Education -->
<section id="education">
<h2>Education</h2>
<ul>
<li><strong>B.Tech in AI & DS</strong> – KL University (2023–2027)</li>
</ul>
</section>
<!-- Skills -->
<section id="skills">
<h2>Skills</h2>
<ul class="skills-grid">
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>React</li>
<li>C</li>
<li>Python</li>
<li>Java</li>
</ul>
</section>
<!-- Projects -->
<section id="projects">
<h2>Projects</h2>
<div class="project-item">
<h3>News Headline Aggregator</h3>
<p>
A Python-based aggregator that scrapes top news headlines using BeautifulSoup from various news portals.
<a href="https://github.com/AhmadullahLaskar/MiniProject-News-Headline-Aggregator-using-BeautifulSoup" target="_blank">
View on GitHub
</a>
</p>
</div>
<div class="project-item">
<h3>Job Listings Scraper</h3>
<p>
An automated tool using Selenium to extract real-time job listings from platforms like LinkedIn or Indeed.
<a href="#">(Coming soon)</a>
</p>
</div>
<div class="project-item">
<h3>Book Price Tracker</h3>
<p>
Built using Scrapy, this bot tracks book prices from e-commerce sites and notifies when prices drop.
<a href="#">(Coming soon)</a>
</p>
</div>
</section>
<!-- Extracurricular -->
<section id="extracurricular">
<h2>Extracurricular Activities</h2>
<ul>
<li>Volunteer – Open Source Contributor, GDC</li>
<li>Member – ZeroOne Code Club</li>
<li>Speaker – Vachas, Literary Club, KLU</li>
</ul>
</section>
</main>
</div>
</body>
</html>