-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (119 loc) · 4.73 KB
/
index.html
File metadata and controls
127 lines (119 loc) · 4.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Advanced Python Programming & Applications | NAVTTC Certified</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" class="active"><i class="fas fa-home"></i> Home</a></li>
<li><a href="about.html"><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="hero">
<div class="hero-content">
<h1>Advanced Python Programming & Applications</h1>
<p class="subtitle">NAVTTC Certified Program</p>
<div class="cta-buttons">
<a href="#notebooks" class="btn btn-primary">
<i class="fas fa-download"></i> Get Notebooks
</a>
<a href="about.html" class="btn btn-secondary">
<i class="fas fa-chalkboard-teacher"></i> Meet Instructor
</a>
</div>
</div>
<div class="hero-pattern"></div>
</section>
<section class="notebooks" id="notebooks">
<div class="section-header">
<h2><i class="fas fa-download"></i> Download Python Notebook Files</h2>
</div>
<div class="notebooks-grid" id="notebook-list">
<!-- Notebooks will be loaded via script.js -->
</div>
</section>
<section class="section features">
<div class="section-header">
<h2><i class="fas fa-star"></i> Why This Course?</h2>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-certificate"></i></div>
<h3>NAVTTC Certified</h3>
<p>Officially recognized certification program</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-chart-line"></i></div>
<h3>Project-Based</h3>
<p>Real-world applications and case studies</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-users"></i></div>
<h3>Expert Instruction</h3>
<p>Learn from Dr. Atif Khan, Associate Professor</p>
</div>
</div>
</section>
<section class="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>Dr. Atif Khan <i class="fas fa-user-tie"></i></h2>
<p class="title">Associate Professor at Islamia College Peshawar</p>
<p class="bio">We are honored to learn from Dr. Atif Khan in the NAVTTC program. His guidance and expertise have made this course possible.</p>
<p class="bio">You can join this program & learn from Dr Atif Khan : https://navttc.gov.pk/ .</p>
</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 & Applications | All rights reserved</p>
<p>By: <strong>Irfan Ullah Khan</strong></p>
<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>
</footer>
<script src="script.js"></script>
</body>
</html>