-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 1.99 KB
/
Copy pathindex.html
File metadata and controls
68 lines (63 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Usama Israr | Portfolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav>
<h1>Usama Israr</h1>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<!-- Theme toggle button -->
<button id="theme-toggle">🌙 Dark Mode</button>
</nav>
<div class="hero">
<h2>Web Developer & MERN Stack Enthusiast</h2>
<p>I build modern, clean, responsive websites and web apps.</p>
</div>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>Hi! I'm Usama Israr, a passionate web developer specializing in the MERN stack. I love building clean, responsive, and user-friendly digital experiences.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="projects-grid">
<div class="project-card">
<h3>Responsive Website Clone</h3>
<p>A modern clone of a popular website with interactive UI/UX.</p>
</div>
<div class="project-card">
<h3>Quiz Application</h3>
<p>Sign-up, dashboard, and dynamic quizzes built with JS and Firebase.</p>
</div>
<div class="project-card">
<h3>Event Management System</h3>
<p>Full-stack MERN app to manage university events with admin panel.</p>
</div>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Email: usamaisrar1190@gmail.com</p>
<p>
<a href="https://github.com/UsamaIsrarDev" target="_blank">GitHub</a> |
<a href="https://linkedin.com/in/usamaisrar" target="_blank">LinkedIn</a>
</p>
</section>
</main>
<footer>
<p>© 2025 Usama Israr</p>
</footer>
<!-- Link JS file -->
<script src="script.js"></script>
</body>
</html>