-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
165 lines (158 loc) · 6.27 KB
/
about.html
File metadata and controls
165 lines (158 loc) · 6.27 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | Advanced Python Programming</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header>
<div class="nav-container">
<div class="logo">
<i class="fa-brands fa-python"></i> PythonPro
</div>
<nav>
<button class="menu-toggle" onclick="toggleMenu()">☰</button>
<ul class="nav-links">
<li><a href="index.html"><i class="fas fa-home"></i> Home</a></li>
<li><a href="about.html" class="active"><i class="fas fa-user-tie"></i> About</a></li>
<li><a href="resources.html"><i class="fas fa-book"></i> Resources</a></li>
<li><a href="contact.html"><i class="fas fa-envelope"></i> Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="about-hero">
<div class="hero-content">
<h1>About the Program</h1>
<p>Learn from industry experts and academic leaders</p>
</div>
</section>
<section class="section instructor-profile">
<div class="profile-card">
<div class="profile-img">
<img src="images/atif-khan.jpg" alt="Dr. Atif Khan">
</div>
<div class="profile-content">
<h2><i class="fas fa-chalkboard-teacher"></i> Dr. Atif Khan</h2>
<p class="title">Associate Professor, Islamia College Peshawar</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/atif-khan-60818454/?originalSubdomain=pk" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://scholar.google.com.my/citations?user=3iI5cKEAAAAJ&hl=en" target="_blank"><i class="fab fa-researchgate"></i></a>
<a href="atifkhan@icp.edu.pk"target="_blank"><i class="fas fa-envelope"></i></a>
</div>
<p class="bio">With over 12 years of experience in teaching Python programming and data science, Dr. Khan specializes in machine learning applications and has published numerous research papers in international journals.</p>
<div class="stats">
<div class="stat-item">
<div class="stat-number">12+</div>
<div class="stat-label">Years Experience</div>
</div>
<div class="stat-item">
<div class="stat-number">300+</div>
<div class="stat-label">Students Trained</div>
</div>
</div>
</div>
</div>
</section>
<section class="section timeline-section">
<div class="section-header">
<h2><i class="fas fa-calendar-alt"></i> Course Timeline</h2>
</div>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-date">Weeks 1-4</div>
<div class="timeline-content">
<h3>Python Fundamentals</h3>
<ul>
<li>Data structures and algorithms</li>
<li>Object-oriented programming</li>
<li>File handling and exceptions</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">Weeks 5-8</div>
<div class="timeline-content">
<h3>Data Science</h3>
<ul>
<li>Pandas for data manipulation</li>
<li>NumPy for numerical computing</li>
<li>Data visualization with Matplotlib</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">Weeks 9-12</div>
<div class="timeline-content">
<h3>Advanced Topics</h3>
<ul>
<li>Machine learning basics</li>
<li>Web scraping and APIs</li>
<li>Final project development</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section gallery-section">
<div class="section-header">
<h2><i class="fas fa-images"></i> Classroom Gallery</h2>
</div>
<div class="gallery-grid">
<div class="gallery-item" onclick="openModal('images/class1.jpg')">
<img src="images/class1.jpg" alt="Classroom session">
<div class="gallery-overlay"><i class="fas fa-search-plus"></i></div>
</div>
<div class="gallery-item" onclick="openModal('images/class2.jpg')">
<img src="images/class2.jpg" alt="Group project">
<div class="gallery-overlay"><i class="fas fa-search-plus"></i></div>
</div>
<div class="gallery-item" onclick="openModal('images/class3.jpg')">
<img src="images/class3.jpg" alt="Coding workshop">
<div class="gallery-overlay"><i class="fas fa-search-plus"></i></div>
</div>
</div>
</section>
<footer>
<div class="footer-content">
<div class="footer-col">
<h3>PythonPro</h3>
<p>Advancing Python education since 2023</p>
</div>
<div class="footer-col">
<h4>Quick Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Connect</h4>
<div class="social-links">
<a href="https://github.com/programmarself" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/iukhan/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://programmarself.github.io/My_Portfolio/" target="_blank"><i class="fa fa-briefcase"></i></a>
</div>
</div>
</div>
<div class="copyright">
<p>© 2025 Advanced Python Programming. All rights reserved.</p>
<p>By: <strong>Irfan Ullah Khan</strong></p>
<a href="https://www.linkedin.com/in/iukhan/" target="_blank">LinkedIn</a> |
<a href="https://github.com/programmarself" target="_blank">GitHub</a> |
<a href="https://programmarself.github.io/My_Portfolio/" target="_blank">Portfolio</a>
</div>
</footer>
<div id="gallery-modal" class="modal">
<span class="close-modal" onclick="closeModal()">×</span>
<img class="modal-content" id="modal-image">
<div class="caption"></div>
</div>
<script src="script.js"></script>
</body>
</html>