Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

21 passed 3 failed #623

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions css/menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,11 @@ footer {
.menu {
background-image: none;
}
.v {
color: #EFE6E1;
background: #040011;
background-color: #000811;
}

/* footer section */
footer {
Expand Down
88 changes: 54 additions & 34 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,50 +4,57 @@

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Sprint Challenge - Home</title>

<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<script src="https://kit.fontawesome.com/5b12ffad4b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/index.css">
</head>

<body>
<div>
<!-- header -->
<header>
<div>
BLOOMTECH BAR AND GRILL

<!-- nav -->
Menu
Reservations
Special Offers
Contact
</div>
<h1>
<a href="index.html">BLOOMTECH BAR AND GRILL</a>
</h1>
<!-- nav -->
<nav class="links">
<div>
<a href="menu.html">Menu</a>
<a href="reservations.html" target="blank">Reservations</a>
<a href="specialoffers.html" target="blank">Special Offers</a>
<a href="contact.html" target="blank">Contact</a>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</nav>
</header>

<!-- gallery section -->
<section class="gallery">
<div>
<h2>OUR FOOD</h2>

img/food-avocadotoast.jpg

img/food-burger.jpg

img/food-poutine.jpg

img/food-ribs.jpg

img/food-sandwich.jpg

img/food-sausage.jpg

img/food-steak.jpg

img/food-tacos.jpg

img/food-wings.jpg
<img src="img/food-avocadotoast.jpg" alt="">
<!-- img/food-avocadotoast.jpg -->
<img src="img/food-burger.jpg" alt="">
<!-- img/food-burger.jpg -->
<img src="img/food-poutine.jpg" alt="">
<!-- img/food-poutine.jpg -->
<img src="img/food-ribs.jpg" alt="">
<!-- img/food-ribs.jpg -->
<img src="img/food-sandwich.jpg" alt="">
<!-- img/food-sandwich.jpg -->
<img src="img/food-sausage.jpg" alt="">
<!-- img/food-sausage.jpg -->
<img src="img/food-steak.jpg" alt="">
<!-- img/food-steak.jpg -->
<img src="img/food-tacos.jpg" alt="">
<!-- img/food-tacos.jpg -->
<img src="img/food-wings.jpg" alt="">
<!-- img/food-wings.jpg -->
</div>
</section>

Expand Down Expand Up @@ -124,18 +131,31 @@ <h3>Contacts</h3>

<!-- footer -->
<footer>

<!-- email signup -->
Join our mailing list!
Sign Up

<!-- Join our mailing list!
Sign Up -->

<!-- <input type="button" value="Sign Up" /> -->

<!-- nav -->
Menu
Reservations
Special Offers
Contact
<nav class="links">

<label for="email">Join our mailing list!</label>
<input type="text" id="email" placeholder="Email Address">
<button >Sign Up</button>

<a href="menu.html">Menu</a>
<a href="reservations.html" target="blank">Reservations</a>
<a href="specialoffers.html" target="blank">Special Offers</a>
<a href="contact.html" target="blank">Contact</a>
</nav>
<!-- copyright -->
©2022 BloomTech Restaurant Group, Inc. All Rights Reserved.
</footer>
</div>
<script src="index.js"></script>
</body>

</html>
Loading