Skip to content

Commit

Permalink
an HTML page that displays a header, footer and a filters box with d…
Browse files Browse the repository at this point in the history
…ropdown.
  • Loading branch information
GideonBature committed Oct 22, 2023
1 parent 2043451 commit 6da628c
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions web_static/6-index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>AirBnB Clone</title>
<link rel="icon" type="image/png" href="./images/icon.png">
<link rel="stylesheet" href="./styles/4-common.css">
<link rel="stylesheet" href="./styles/3-footer.css">
<link rel="stylesheet" href="./styles/3-header.css">
<link rel="stylesheet" href="./styles/6-filters.css">
</head>
<body>
<header>
<img src="./images/logo.png" alt="logo">
</header>
<div class="container">
<section class="filters">

<button>Search</button>

<div class="locations">
<h3>States</h3>
<h4>Street, Area...</h4>
<ul class="popover">
<li>
<h2>Kaduna.</h2>
<ul>
<li>Buwaya</li>
<li>Gonin Gora</li>
</ul>
</li>
<li>
<h2>Abuja.</h2>
<ul>
<li>Nyanya</li>
<li>Asokoro</li>
</ul>
</li>
</ul>
</div>
<div class="amenities">
<h3>Amenities</h3>
<h4>Electricity, Water...</h4>
<div class="popover">
<ul>
<li>Internet</li>
<li>TV</li>
<li>Kitchen</li>
<li>Iron</li>
</ul>
</div>
</div>
</section>
</div>
<footer>
<p>Best School</p>
</footer>
</body>
</html>

0 comments on commit 6da628c

Please sign in to comment.