-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
104 lines (78 loc) · 3.88 KB
/
index.php
File metadata and controls
104 lines (78 loc) · 3.88 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
<!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="home.css">
<style>
</style>
</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>
<section class="hero-section">
<div class="container">
<h1><span>Hi, </span> it's Ali Zaman</h1>
<p>Creating Future-Proof Digital Experiences</p>
<a href="#projects" class="cta-button">View My Experiences</a>
</div>
</section>
<section class="work-section">
<div class="work-container max-area-of-container">
<div class="work-image">
<img src="web_dev.jpg" alt="Work Showcase">
</div>
<div class="work-content">
<h2>What I Do</h2>
<p>I specialize in developing responsive, high-performance web applications with a focus on user-centric design, leveraging my expertise in HTML5, CSS3, JavaScript, PHP, and MySQL for full-stack solutions.</p>
<p>Driven by innovation and precision, I'm dedicated to turning visionary ideas into tangible, impactful digital experiences.</p>
<a href="#" class="work-btn">View Projects</a>
</div>
</div>
</section>
<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>