I’ve been working on this code for 5 days now and can’t get the text to go into 2 columns on the website. I feel like I’ve tried so many combinations but can’t even get it close. Does anyone have the correct code to share? This is what I have now after deleting everything and starting over again.
<div class="featured">
<!-- container for content on species list -->
<h2 class="info">🌟 Featured Species</h2>
<ul>
<li>Amur Leopard</li>
<li>Sumatran Elephant</li>
<li>Mountain Gorilla</li>
</ul>
<!-- container for content on top conservation efforts of the month -->
<h2>🌳 Top Conservation Efforts</h2>
<ol>
<li>Wildlife Protection Initiatives</li>
<li>Habitat Restoration Projects</li>
<li>Community Education and Engagement</li>
</ol>
</div>
CSS
/* style for the featured species and conservation efforts */
.featured{
background-color:beige;
height:200px;
}
/* style for the content inside the featured container */
.info {
align-self:flex-start;
}
.info-1 {
align-content:flex-end;
}