0% found this document useful (0 votes)
24 views2 pages

Myself HTML

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views2 pages

Myself HTML

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shubham's Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #333;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #ccc 3px solid;
}
header h1 {
text-align: center;
margin: 0;
}
.main-content {
background: #fff;
padding: 20px;
margin: 20px 0;
border-radius: 8px;
}
.portfolio-item {
margin-bottom: 20px;
}
.portfolio-item h2 {
margin: 0;
color: #007bff;
}
.portfolio-item p {
margin: 10px 0;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Shubham's Portfolio</h1>
</div>
</header>

<div class="container">
<div class="main-content">
<h2>Portfolio</h2>
<div class="portfolio-item">
<h2>Project Title 1</h2>
<p>Description of the project goes here. This could include details
about the project, technologies used, and any other relevant information.</p>
</div>
<div class="portfolio-item">
<h2>Project Title 2</h2>
<p>Description of the project goes here. This could include details
about the project, technologies used, and any other relevant information.</p>
</div>
<!-- Add more portfolio items as needed -->
</div>
</div>

<footer>
<p>&copy; 2024 Shubham. All rights reserved.</p>
</footer>
</body>
</html>

You might also like