Trending Designs

Impressed by our work?

Hire us for exceptional web development services on Fiverr

Bootstrap 5 About Us Page Design | Responsive About Us Page From Scratch

07 September
In this tutorial we'll watch how to make about us page using HTML, CSS and BOOTSTRAP 5.

Bootstrap 5 About Us Page Design | Responsive About Us Page | From Scratch

We'll walk you through the process of designing and coding a page that will look great on any device, from desktops to smartphones. You'll learn about the best practices for responsive design, including flexible layouts.


Let's Design a About US Page.

HTML


                            
                                <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Responsive About Us</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@500;600;700;800;900&display=swap" rel="stylesheet">
</head>
<body>

        <main class="container py-5">
            <h1 class="text-center display-4 fw-bold mb-5 text-dark">Responsive About Us</h1>

            <section class="section-card bg-white mb-5 rounded-5 p-5">
                <div class="row align-items-center">
                    <div class="col-md-7">
                        <h2 class="fw-bold mb-3">Our Mission</h2>
                        <p class="lead text-secondary">Our mission is to empower individuals and businesses by providing innovative and accessible solutions. We are committed to fostering creativity, driving progress, and building a community where everyone can thrive.</p>
                        <p class="text-muted">We believe that technology should serve people, and our core values of integrity, collaboration, and excellence guide every decision we make. We strive to create products that are not only powerful but also intuitive and delightful to use.
</p>
                    </div>
                    <div class="col-md-5">
                        <img src="our-mission.avif" class="img-fluid rounded-4" alt="Our Mission Image">
                    </div>
                </div>
            </section>

            <section class="section-card bg-white mb-5 rounded-5 p-5">
                <div class="row align-items-center flex-md-row-reverse">
                    <div class="col-md-7">
                        <h2 class="fw-bold mb-3">Our History</h2>
                        <p class="lead text-secondary">
                            Founded in 2018 in a small garage, our journey began with a simple idea: to make high-quality digital tools available to everyone. From our humble beginnings, we've grown into a global team of passionate creators.
                        </p>
                        <p class="text-muted">
                              Over the years, we've faced challenges and celebrated victories, but our dedication to our users has remained constant. Our story is one of continuous learning and a relentless pursuit of a better future.
                        </p>
                    </div>
                    <div class="col-md-5">
                        <img src="our-history.avif" class="img-fluid rounded-4" alt="Our History">
                    </div>
                </div>
            </section>

            <section class="section-card bg-white mb-5 rounded-5 p-5">
                <h2 class="fw-bold text-center mb-5">Meet Our Team</h2>
                <div class="row g-4 text-center">
                    <div class="col-md-4">
                        <div class="team-member-card bg-light p-4 rounded-4">
                            <img src="team.avif" class="team-img mb-3" alt="John Doe">
                            <h5 class="fw-bold mb-1">John Doe</h5>
                            <p class="text-muted">CEO & Founder</p>
                        </div>
                    </div>
                    <div class="col-md-4">
                          <div class="team-member-card bg-light p-4 rounded-4">
                            <img src="team.avif" class="team-img mb-3" alt="John Doe">
                            <h5 class="fw-bold mb-1">John Doe</h5>
                            <p class="text-muted">Lead Developer</p>
                        </div>
                    </div>
                    <div class="col-md-4">
                          <div class="team-member-card bg-light p-4 rounded-4">
                            <img src="team.avif" class="team-img mb-3" alt="John Doe">
                            <h5 class="fw-bold mb-1">John Doe</h5>
                            <p class="text-muted">Design Head</p>
                        </div>
                    </div>
                </div>
            </section>

        </main>



       <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>

</body>
</html>
                            
                        

Let's Write CSS.


                            
                                <style>
    body{
        font-family: 'Inter' ,sans-serif;
        background-color: #f8f9fa;
    }
    .section-card{
        box-shadow: 0 8px 15px rgba(0,0,0,0.08);
    }
    .team-member-card{
        transition: all 0.3s ease;
    }
    .team-member-card:hover{
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.01);
    }
    .team-img{
        border-radius: 50%;
        height: 120px;
        width: 120px;
        object-fit: cover;
    }
</style>
                            
                        

Complete the design now you can easily copy and paste code and integrate in your project.



Download Code Files


Share This Post :