<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Simple Navbar</title> <style> /* Basic styling for the navbar */ .navbar { display: flex; justify-content: space-between; align-items: center; background-color:black; padding: 10px; color:white; } .navbar a { color: green; padding: 0px 15px; } .navbar a:hover { background-color:red; } /* Styling for the logo */ </style> </head> <body> <!-- Navbar --> <div class="navbar"> <p>cvr</p> <div > <a href="#home">Home</a> <a href="#about">About</a> <a href="#contact">Contact</a> </div> </div> </body> </html>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter