When it comes to building responsive layouts, Flexbox offers a powerful and flexible way to achieve complex designs with minimal code. In this post, we will guide you step-by-step to create a responsive navigation bar using Flexbox in HTML.
index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="css/style.css"/> </head> <body> <div class="container"> <div class="logo"> <img src="images/push.png" width="230px" height="50px"/> </div> <div class="navlinks"> <a href="#">Projects</a> <a href="#">Services</a> <a href="#">About</a> <a href="#">Contact</a> </div> <div class="button"> <button class="nav-button">Login</button> <button class="nav-button">Register</button> </div> </div> </body> </html>
style.css
body{ margin: 0; padding: 0; justify-content: center; font-family: 'noto Sans'; display: flex; } .container{ display: flex; justify-content: space-between; width: 100%; height: 100px; background-color: rgb(18, 135, 224); align-items: center; padding: 0 50px; gap:30px; color: white; } .navlinks{ display: flex; gap: 20px; } .navlinks a{ text-decoration: none; color: white; font-size: 20px; } .nav-button{ padding-left: 1rem; padding-right: 1rem; padding-bottom: 1rem; padding-top: 1rem; border-radius: 2%; font-size: 1rem; font-weight: bold; background-color: rgb(3, 80, 139); color: white; }
The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…
Creating a responsive login form is a crucial skill for any web developer. In this…
In this tutorial will teach Laravel 12 CRUD API by step. Laravel 10 CRUD Application …
In this lesson we talk about laravel 12 image uploading and display the image step…
In this tutorial will teach Laravel 12 CRUD Application step by step. Laravel 12 CRUD…
Conditional statements in Python allow us to control the flow of execution based on conditions.…