Files
portfolio/index.html
2026-03-03 19:52:40 +05:30

39 lines
1003 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header>
<h1>Zikra Shaikh</h1>
<p>learning full stack developer </p>
</header>
<!-- Image Section -->
<section class="profile">
<img src="profile.jpg" alt="My Photo">
</section>
<!-- Link Section -->
<section class="links">
<h2>My Work</h2>
<a href="https://www.linkedin.com" target="_blank">LinkedIn</a>
<a href="https://www.instagram.com" target="_blank">Instagram</a>
</section>
<!-- Contact Form -->
<section class="contact">
<h2>Contact Me</h2>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message"></textarea>
<button type="submit">Send</button>
</form>
</section>
</body>
</html>