Replicate assignment-1 index

This commit is contained in:
JValenzuela1
2025-02-05 22:05:30 -08:00
parent 2221a861bb
commit f37cdce66b

View File

@@ -3,135 +3,11 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #ffcf00;
color: white;
padding: 20px 0;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
text-align: center;
font-size: 28px;
margin-bottom: 10px;
}
p {
color: #555;
font-size: 18px;
margin-bottom: 20px;
line-height: 1.6;
}
.info-box {
background-color: #f0f0f0;
padding: 20px;
border-radius: 5px;
margin-bottom: 20px;
}
.info-box h2 {
color: #aa8b00;
font-size: 22px;
margin-bottom: 10px;
}
.info-box p {
font-size: 16px;
color: #444;
margin: 5px 0;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #333;
color: white;
border-radius: 0 0 8px 8px;
margin-top: 40px;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}
</style>
<title>My Second Project</title>
</head>
<body>
<header>
<h1>About Me</h1>
</header>
<div class="container">
<h1>Welcome to My Page!</h1>
<p>Hello! My name is <strong>[Your Name]</strong>. Below you'll find a bit more about me, including my hobbies, my favorite food, and a fun fact!</p>
<div class="info-box">
<h2>Name</h2>
<p>[Your Name]</p>
</div>
<div class="info-box">
<h2>Hobbies</h2>
<p>[Your Hobbies]</p>
</div>
<div class="info-box">
<h2>Favorite Food</h2>
<p>[Your Favorite Food]</p>
</div>
<div class="info-box">
<h2>Fun Fact</h2>
<p>[A Fun Fact About You]</p>
</div>
</div>
<div class="container">
<h1>Welcome to My Page!</h1>
<p>Hello! My name is <strong>[Your Name]</strong>. Below you'll find a bit more about me, including my hobbies, my favorite food, and a fun fact!</p>
<div class="info-box">
<h2>Name</h2>
<p>[Your Name]</p>
</div>
<div class="info-box">
<h2>Hobbies</h2>
<p>[Your Hobbies]</p>
</div>
<div class="info-box">
<h2>Favorite Food</h2>
<p>[Your Favorite Food]</p>
</div>
<div class="info-box">
<h2>Fun Fact</h2>
<p>[A Fun Fact About You]</p>
</div>
</div>
<footer>
<p>&copy; 2024 [Your Name]. All rights reserved.</p>
</footer>
<h1>Hello, World!</h1>
<div>My name is _______</div>
<div>My favorite hobby is _______</div>
</body>
</html>