let's create a personal webpage for you, Pak Quotes. Here’s a single HTML file containing the structure and content you need:- Simply copy this code and edit this code according to your need:-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pak Quotes</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
padding: 1em 0;
text-align: center;
}
nav {
margin: 1em;
text-align: center;
}
nav a {
margin: 0 1em;
text-decoration: none;
color: #333;
}
.container {
width: 80%;
margin: 2em auto;
background-color: white;
padding: 2em;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section {
margin-bottom: 2em;
}
footer {
text-align: center;
padding: 1em 0;
background-color: #333;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin: 0.5em 0;
}
</style>
</head>
<body>
<header>
<h1>Pak Quotes</h1>
</header>
<nav>
<a href="#about">About Me</a>
<a href="#profiles">Profiles</a>
<a href="#contact">Contact Information</a>
</nav>
<div class="container">
<section id="about" class="section">
<h2>About Me</h2>
<p>Hello! I am Pak Quotes. Welcome to my personal webpage. Here you can find more about my profiles, projects, and how to contact me.</p>
</section>
<section id="profiles" class="section">
<h2>My Profiles</h2>
<ul>
<li><a href="https://www.linkedin.com/in/pak-quotes" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/pak-quotes" target="_blank">GitHub</a></li>
<li><a href="https://twitter.com/pak_quotes" target="_blank">Twitter</a></li>
</ul>
</section>
<section id="contact" class="section">
<h2>Contact Information</h2>
<p>You can reach me at <a href="mailto:pak.quotes@example.com">pak.quotes@example.com</a>.</p>
</section>
</div>
<footer>
<p>© 2024 Pak Quotes</p>
</footer>
</body>
</html>