39 lines
1003 B
HTML
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> |