HTML NAV

🧩 Syntax:
*{
    color:#F0F0F0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
}

nav{
   
    height: 75px;
    display: flex;
    justify-content: space-between;
    background-color: #3C486B
}

.logoblock{
    width: 200px;
    height: 75px;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 20px;
}

.menublock{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 400px;
    height: 75px;
    
  
}

ol{
 
    width: 400px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

ol{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    width: 200px;
    height: 50px;
}



<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./index.css">
</head>
<body>

    <nav>
        <div class="logoblock">
            <img src="./NicePng_apple-music-png_354338.png" alt="">
        </div>

        <div class="menublock">
           <ol>
                <li>
                    <a href="">HOME</a>
                </li>
                <li>
                    <a href="">LOGIN</a>
                </li>
                <li>
                    <a href="">ABOUT</a>
                </li>
                <li>
                    <a href="">SIGNUP</a>
                </li>
           </ol>
        </div>

    </nav>
    
</body>
</html>