skip to Main Content

How can I make a good-looking header with bootstrap 5? I mean, with a lot of thing in it

im suck at html (but fr)

nothing, cuz im really not good at it, and i want to learn

and how can i be better, if i don’t ask this question?

2

Answers


  1. There is a good-looking example.

    <header>
        <div class="container-fluid">
            <div class="container">
                <div class="row">
                    <div class="col-12 col-lg-4">
                    </div>
                    <div class="col-12 col-lg-8">
                        <nav>
                            <a href="">Link_1</a>
                            <a href="">Link_2</a>
                            <a href="">Link_3</a>
                        </nav>
                    </div>
                </div>
            </div>
        </div>
    </header>
    

    Visit this website for more examples https://getbootstrap.com/

    Login or Signup to reply.
  2. A quick-win is to copy then modify one of their Examples, check them out here:
    https://getbootstrap.com/docs/5.3/examples/headers/

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