Initial Commit
This commit is contained in:
30
navbar/navbar01.html
Normal file
30
navbar/navbar01.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!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>navbar01</title>
|
||||
|
||||
<link rel="stylesheet" href="navbar01.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1 class="logo">Logo</h1>
|
||||
<input type="checkbox" name="" class="nav-toggle" id="nav-toggle" />
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="#">Home</a></li>
|
||||
<li><a href="#">Team</a></li>
|
||||
<li><a href="#">News</a></li>
|
||||
<li><a href="#">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<label for="nav-toggle" class="nav-toggle-label"><span></span></label>
|
||||
</header>
|
||||
|
||||
<div class="content">
|
||||
<h2>This is the content</h2>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user