Any videos that would help with the product landing page

currently doing the landing page (3rd project in the first section of fcc) and im having a bit of difficulty. looked up some youtube videos but most of them just suck at explaining things to people that dont have a solid understanding of how things work yet. any video recommendations to help with nav bars and the i tags used in the sample page given by fcc. any help is greatly appreciated

You don’t really need a video for laying out a page navigation bar.

A basic simple structure will look like:

    <header>
        <nav>
            <div>
                <img src="path to logo img" alt="logo" id="logo">
            </div>
            <div>
                <a href="#">Link 1</a>
                <a href="#">Link 2</a>
                <a href="#">Link 3</a>
                <a href="#">Link 4</a>
            </div>
        </nav>
    </header>

Here a codepen for inspiration using ul li structure.

1 Like

Hey thanks for the reply man. I should’ve clarified in the main post that I’m mainly having difficulty with the css part of it.