My Web Page
My Web Page
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jannat's Personal Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f5;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #6a0dad;
color: white;
padding: 10px 0;
text-align: center;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
.container {
padding: 20px;
}
.section {
margin-bottom: 20px;
}
.section h2 {
color: #6a0dad;
}
.pets, .travels {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.pet, .travel {
border: 1px solid #ccc;
border-radius: 10px;
padding: 10px;
width: calc(33% - 20px);
background-color: white;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Jannat's Personal Webpage</h1>
</header>
<nav>
<a href="#about">About Me</a>
<a href="#pets">Pets</a>
<a href="#travels">Travels</a>
<a href="#hobbies">Hobbies</a>
</nav>
<div class="container">