-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
119 lines (115 loc) · 4.38 KB
/
contact.html
File metadata and controls
119 lines (115 loc) · 4.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | 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"><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" class="active"><i class="fas fa-envelope"></i> Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="contact-hero">
<div class="hero-content">
<h1>Get In Touch</h1>
<p>We'd love to hear from you</p>
</div>
</section>
<section class="section contact-section">
<div class="contact-container">
<div class="contact-info">
<h2><i class="fas fa-paper-plane"></i> Contact Information</h2>
<div class="info-item">
<i class="fas fa-map-marker-alt"></i>
<p>Peshawar, Pakistan</p>
</div>
<div class="info-item">
<i class="fas fa-envelope"></i>
<p>programmarself@gmail.com</p>
</div>
<div class="info-item">
<i class="fas fa-phone"></i>
<p>+92 3119690936</p>
</div>
<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 class="contact-form">
<h2><i class="fas fa-comment-dots"></i> Send Us a Message</h2>
<form id="contactForm">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-primary">
<i class="fas fa-paper-plane"></i> Send Message
</button>
</form>
</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://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>
<script src="script.js"></script>
</body>
</html>