skip to Main Content

I´am coding a website in Bootstrap 5, and I dont have idea how to correctly make this background (https://postimg.cc/xJymRpVf). Can someone help me please?

Here is code of my section.

<section class="py-5">
        <div class="container">
            <div class="row justify-content-center">
                <div class="col-lg-9 col-12 py-5">
                    <h2 class="fw-bold text-blue">Přidejte se mezi úspěšné franšízové sítě
                    </h2>
                    <p class="mt-4">Čekáte, až si Vás franšízanti sami najdou? Máme bohaté zkušenosti s akvizicí
                        franšízantl pro úspěšné sítě a rozvíjíme také jejich obchodní strategii.</p>
                </div>
            </div>
            <div class="row justify-content-center">
                <div class="col-lg-9 col-12 mb-3">
                    <p class="h4 fw-bold text-blue">Síť tradičního holičství na 15 místech</p>
                </div>
            </div>
            <div class="row justify-content-center">
                <div class="col-lg-9 col-12">
                    <div class="row">
                        <div class="col-lg-6 col-12">
                            <img src="img/barber.jpg" class="img-fluid">
                        </div>
                        <div class="col-lg-6 col-12">
                            <div
                                class="card radius-bottom bg-primary p-4 text-white h-100 d-flex justify-content-center">
                                <p class="h5 fw-bold">Royal Barber & Shop</p>
                                <ul class="small">
                                    <li>Tvoříme obchodní strategii</li>
                                    <li>Hledáme motivované franšízanty</li>
                                    <li>Spuštěné on-line kampaně k propagaci</li>
                                </ul>
                                <p class="fw-bold">15 poboček, 1 000 zákazníků</p>
                            </div>
                        </div>
                    </div>
                    <div class="col-12 text-center mt-5">
                        <a href="#" class="btn btn-lg bg-success rounded-pill text-white fw-bold px-5">Pojďme
                            spolupracovat</a>
                    </div>
                </div>
            </div>
        </div>
    </section>

I have no idea how to make this correctly :/

2

Answers


  1. Chosen as BEST ANSWER

    Unfortunately it's a graphic design that I have to code


  2. It is an image
    If you can reach to the website which contains the background image you can get it from inspect as a URL

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search