Skip to content

Commit fd0120d

Browse files
authored
Add initial HTML structure for personal website
1 parent 0bf289c commit fd0120d

File tree

1 file changed

+86
-0
lines changed

1 file changed

+86
-0
lines changed

index.html

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Hamad Rashid | Backend Laravel Developer</title>
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
10+
11+
<header>
12+
<h1>Hamad Rashid</h1>
13+
<p class="subtitle">Backend Laravel Developer</p>
14+
<p class="tagline">
15+
Building scalable, secure, and high-performance web applications & APIs
16+
</p>
17+
<div class="links">
18+
<a href="https://linkedin.com/in/hamadrashid007" target="_blank">LinkedIn</a>
19+
<a href="https://github.com/Hamad-Rashid" target="_blank">GitHub</a>
20+
<a href="mailto:chhamad444@gmail.com">Email</a>
21+
</div>
22+
</header>
23+
24+
<section>
25+
<h2>About Me</h2>
26+
<p>
27+
I am a backend developer specializing in Laravel, and PHP,
28+
focused on building scalable, secure, and high-performance backend systems.
29+
I write clean, maintainable, and production-ready code following PSR-12
30+
and SOLID principles.
31+
</p>
32+
<p>
33+
I have experience with authentication systems, payment integrations
34+
(Stripe & PayPal), subscription management, caching, and database optimization.
35+
I focus on performance, reliability, and long-term maintainability.
36+
</p>
37+
</section>
38+
39+
<section>
40+
<h2>Core Skills</h2>
41+
<ul>
42+
<li><strong>Backend:</strong> Laravel, PHP, Livewire</li>
43+
<li><strong>APIs:</strong> RESTful APIs, Stripe, PayPal</li>
44+
<li><strong>Database:</strong> MySQL, Query Optimization, Caching</li>
45+
<li><strong>Server:</strong> Nginx, Supervisor, PHP-FPM, Linux</li>
46+
<li><strong>Tools:</strong> Git, Composer</li>
47+
</ul>
48+
</section>
49+
50+
<section>
51+
<h2>Projects</h2>
52+
53+
<h3>VPN Account Management System</h3>
54+
<p>
55+
Fully automated system for managing users and subscriptions.
56+
Built with Laravel, Livewire, and MySQL.
57+
</p>
58+
59+
<h3>Payment Gateway Integration</h3>
60+
<p>
61+
Secure Stripe and PayPal integrations with robust logging,
62+
error handling, and subscription workflows.
63+
</p>
64+
65+
<h3>CMS Admin VPN Panel</h3>
66+
<p>
67+
A user-friendly admin panel for managing users, servers, configurations, and subscriptions.
68+
Built with Laravel, Livewire, and MySQL.
69+
</p>
70+
</section>
71+
72+
<section>
73+
<h2>Why Work With Me</h2>
74+
<p>
75+
I focus on reliability, scalability, and clean backend architecture.
76+
I communicate clearly and deliver systems that scale confidently as your
77+
application grows.
78+
</p>
79+
</section>
80+
81+
<footer>
82+
<p>© 2025 Hamad-Rashid</p>
83+
</footer>
84+
85+
</body>
86+
</html>

0 commit comments

Comments
 (0)