-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
127 lines (120 loc) · 4.39 KB
/
portfolio.html
File metadata and controls
127 lines (120 loc) · 4.39 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>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="shortcut icon" href="asad-meeran-high-resolution-logo-transparent.png" type="image/x-icon">
<link rel="icon" href="asad-meeran-high-resolution-logo-transparent.png" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ASAD JUTT - Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Include your CSS file here -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Logo Section -->
<section class="logo">
<div class="container">
<img src="asad-meeran-high-resolution-logo-transparent.png" alt="ASAD MEERAN Logo">
</div>
</section>
<!-- Navbar -->
<nav class="navbar">
<div class="container">
<div class="brand">
<a href="#">ASAD MEERAN</a>
</div>
<div class="navbar-links">
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>Welcome to my Portfolio</h1>
<p>I am a dedicated and skilled professional ready to tackle new challenges. Explore my work below.</p>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<h2>About Me</h2>
<div class="circular-image">
<img src="pic.jpg" alt="Profile Picture">
</div>
<div class="about-content">
<div class="about-text">
<h3>ASAD MEERAN</h3>
<p>I am a hardworking and experienced individual with expertise in web develping,multi-language programming , and reviews. I have a proven track record of delivering high-quality work and exceeding client expectations.</p>
<p>Email: asad.meeran25@gmail.com</p>
<p>Phone: +92 309 8126826</p>
</div>
<div class="skills">
<h3>Technical Skills</h3>
<div class="skill">
<p>WEBSITE Developing</p>
<div class="progress">
<div class="progress-bar" style="width: 95%;">95%</div>
</div>
<div class="skill">
<p>MULTI-LANGUAGE PROGRAMMING</p>
<div class="progress">
<div class="progress-bar" style="width: 95%;">95%</div>
</div>
<div class="skill">
<p>DATABASE Developing</p>
<div class="progress">
<div class="progress-bar" style="width: 95%;">95%</div>
</div>
</div>
<!-- Add more skills here -->
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="portfolio">
<div class="container">
<h2>Portfolio</h2>
<div class="portfolio-item">
<h3>Download my resume:</h3>
<a href="files/resume.pdf" download class="download-resume-button">
Download Resume
<i class="fas fa-download"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<h2>Contact Me</h2>
<p>Have a project in mind or just want to say hi? Feel free to get in touch!</p>
<form action="https://formspree.io/f/myyrdkpo" method="POST" class="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2024 ASAD JUTT. All rights reserved.</p>
<div class="social-links">
<a href="https://www.instagram.com/aj_asad_/" class="fab fa-instagram"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="https://www.linkedin.com/in/asad-meeran-b4662b29a/" class="fab fa-linkedin"></a>
<a href="https://github.com/ajasad25" class="fab fa-github"></a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>