× Introducting Dog Shelter Project Dog Shelter: Setting Up The Folder Structure Dog Shelter: Building The Navbar Dog Shelter: Building The Hero Section Dog Shelter: Building The Get Involved Section Dog Shelter: Building Dogs For Adoption Section Dog Shelter: Building The QA Section Dog Shelter: Building The Footer Section Dog Shelter: Responsive Design

Dog Shelter Project: Building The Get Involved Section

Welcome back! In today's video tutorial, we're thrilled to guide you through the process of creating the "Get Involved" section for your Dog Shelter website project. This section features three engaging cards that outline various ways in which individuals can contribute and make a positive impact on the lives of sheltered dogs. So, let's dive in and start building a "Get Involved" section.

Building The "Get Involved" Section - Summary:

In today's video tutorial, we've crafted an engaging section featuring a compelling heading, an inviting introductory paragraph, and three responsive cards that gracefully move upon hover. This tutorial not only showcases the power of responsive design but also adds an element of interactivity to encourage user engagement. In summary, here is HTML & CSS code that we have used.

"Get Involved" Section: HTML Code

< section class="get-involved">
< div class="involvement-section" id="involvement" > < /div >
< h2 class="involvement-heading"> Get Involved </h2 >
< p class="involvement-description-paragraph" > Content Here </p >
< div class="involvement-options" >
< div class="involvement-option">
< div class="involvement-icon" > 🙌 lt; /div>
< div class="involvement-title" > Volunteer < /div >
<div class="involvement-description" > Join our team of dedicated volunteers and help care for our dogs. < /div >

Please repeat for two more cards.

"Get Involved" Section: CSS Code

.involvement-section { padding: 80px 0; background-color: #f4f4f4; text-align: center; }
.involvement-heading { font-size: 28px; margin-bottom: 30px; margin-top:-15px; }
.involvement-options { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.involvement-option { flex: 1; max-width: 300px; padding: 20px; background-color: white; border: 1px solid #ddd; border-radius: 5px; transition: transform 0.3s; margin-top:40px; }
.involvement-option:hover { transform: translateY(-5px); }
.involvement-icon { font-size: 36px; margin-bottom: 10px; }
.involvement-title { font-size: 20px; margin-bottom: 10px; }
.involvement-description { font-size: 16px; color: #666; }

Now is your turn! Remember: "Practice makes perfect"!

Worning: Do not copy & paste the above code. Type it in to practice. Please Do Not Copy & Paste the above code as it will not display. Please type in the above code to practice.