-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlexbox_Navbar_Solution.html
More file actions
29 lines (29 loc) · 984 Bytes
/
Copy pathFlexbox_Navbar_Solution.html
File metadata and controls
29 lines (29 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flexbox Navbar - Solution</title>
<link rel="stylesheet" href="Flexbox_Navbar_Solution.css">
</head>
<body>
<header class="navbar">
<div class="logo">
<a href="#">MyLogo</a>
</div>
<nav class="nav-links">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome to the Flexbox Navbar Demo</h1>
<p>This page demonstrates a simple, responsive navigation bar built using CSS Flexbox.</p>
<p>Resize your browser window to see how the layout adapts (though for this basic example, it mainly keeps items in a row).</p>
</main>
</body>
</html>