Tell us what’s happening:
hello i hope you are fine and happy new year to you ,please i can’t pass this step
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Build an Event Flyer Page</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body class="body">
<header>
<img
src="https://cdn.freecodecamp.org/curriculum/labs/event.jpg"
alt="an image of a rock">
<h1 class="header">Pet Rock Festival</h1>
<p>Join us for the first annual Pet Rock Festival!</p>
<p><strong>When</strong>:October 3rd <strong>Where</strong>:Boulder Park</p>
</header>
<hr>
<div class="contenair">
<main>
<section class="section1">
<h2>Festival Highlights</h2>
<ul>
<li>Pet Rock Obedience Shows</li>
<li>Best Dressed Pet Rock Contest</li>
<li>Pet Rock Uphill Racing</li>
</ul>
</section>
<section class="section2">
<h2>Special Guests</h2>
<ul>
<li>John Gravel</li>
<li>Wendy Cobblestone</li>
</ul>
</section>
<section class="section3">
<h2>Food Trucks</h2>
<ul>
<li>Rock 'n' Roll Tacos</li>
<li>Granite Grill</li>
<li>Stone Cold Smoothies</li>
</ul>
</section>
</main>
</div>
<hr>
<footer>
<p>© 2025 Pet Rock Festival</p>
</footer>
</body>
</html>
/* file: styles.css */
body {
padding:50px;
margin:0 auto;
width:50vw;
font-family: Arial sans-serif;
min-height:calc(100vh - 100px)
}
hr {
width: 85%;
margin: 80px auto;
}
.section1, .section2,.section3{
width: 33%;
}
main {
display: flex;
gap: 20px;
width: 100%;
margin: 0 auto;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0
Challenge Information:
Build an Event Flyer Page - Build an Event Flyer Page







