medium
+15 XP
FRONTEND
Flexbox Navigation Bar
Build a responsive navbar using flexbox with logo on left and links on right.
You're exploring as a guest. Create a free account to save progress and submit solutions.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="/styles.css" /> </head> <body> <nav class="navbar"><div class="logo">Logo</div><div class="links"><a href="#">Home</a><a href="#">About</a></div></nav> <script src="/index.js"></script> </body> </html>