-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
84 lines (66 loc) · 3.23 KB
/
contact.php
File metadata and controls
84 lines (66 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ali Zaman's Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<header class="main-header">
<nav class="navbar max-area-of-container">
<div class="logo-container">
<a href="index.php">Ali Zaman Co.</a>
</div>
<button class="nav-toggle" aria-label="toggle navigation">
<i class="fas fa-bars"></i>
</button>
<div class="nav-links-container">
<ul class="nav-links">
<li><a href="index.php">Home</a></li>
<li><a href="skills.php">Skills</a></li>
<li><a href="projects.php">Projects</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
</nav>
</header>
<!-- contact.php -->
<form action="submit_contact.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required cols="3" rows="3"></textarea>
<button type="submit">Submit</button>
</form>
<footer class="site-footer">
<div class="footer-container">
<div class="contact-info">
<p> <span class="contact-head"> Contact me:</span><br><a href="mailto:alizaman6780@gmail.com">alizaman6780@@gmail.com</a></p>
<p>Ali Zaman</p>
<p>123 UCP A, University of Central Punjab, Lahore, Pakistan</p>
</div>
<div class="social-icons">
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Facebook"><i class="fab fa-facebook"></i></a>
</div>
<!-- <a href="#" class="download-resume">DOWNLOAD RESUME</a> -->
</div>
<div class="copy-rights">
<p align="center">© 2024 Ali Zaman. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>