forked from udacity/ud891
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alice Boxhall
committed
Apr 19, 2016
1 parent
a042713
commit 140f180
Showing
5 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Bondi Brunch</title> | ||
<link rel="stylesheet" href="main.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="container"> | ||
<a href="/"><img src="logo.png"></a> | ||
</div> | ||
</header> | ||
<main> | ||
<div class="container"> | ||
<div class="banner-image"> | ||
<img src="sandwich.jpg" alt=""> | ||
</div> | ||
</div> | ||
<div class="container"> | ||
<h2>Brunch menu</h2> | ||
<p>To see the dinner menu, <a href="/dinner">click here</a>.</p> | ||
<ul> | ||
<li>Bircher muesli with stewed rhubarb, yogurt and honey $13 | ||
<li>Toasted banana bread $6 | ||
<li>Toasted sourdough bread (soy linseed or plain) $6<br> | ||
Add: | ||
<ul> | ||
<li>Smashed avocado $3 | ||
<li>Ricotta $2 | ||
<li>Feta and mint $2 | ||
<li>Poached egg $2.5 | ||
<li>Fresh tomato $3 | ||
<li>Marmalade, blackberry jam or Vegemite $1 | ||
</ul> | ||
<li>Bacon and egg toastie $9 | ||
</ul> | ||
</div> | ||
</main> | ||
<footer> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif; | ||
} | ||
|
||
header { | ||
margin-bottom: 48px; | ||
border-bottom: 1px solid #AAA; | ||
} | ||
|
||
.container { | ||
max-width: 1000px; | ||
margin: 0 auto; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.