Harry - bez JS
This commit is contained in:
38
index.html
Normal file
38
index.html
Normal file
@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="cs">
|
||||
<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>Responsivní navigace</title>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
|
||||
/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="left">
|
||||
<div class="logo">
|
||||
<img src="img/logo.png" alt="" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input type="checkbox" id="check" />
|
||||
<label for="check" class="checkBtn">
|
||||
<i class="fa fa-bars"></i>
|
||||
</label>
|
||||
<ul class="list">
|
||||
<li><a href="#">Domů</a></li>
|
||||
<li><a href="#">Galerie</a></li>
|
||||
<li><a href="#">Servis</a></li>
|
||||
<li><a href="#">O nás</a></li>
|
||||
<li><a href="#">Kontact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<section class="welcome"></section>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user