Skip to content

Commit

Permalink
Restaurant Menu Activity Complete
Browse files Browse the repository at this point in the history
  • Loading branch information
daibourne committed Oct 29, 2023
1 parent c2f74a7 commit 75e4a48
Show file tree
Hide file tree
Showing 5 changed files with 223 additions and 43 deletions.
31 changes: 31 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,44 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Remember to link to your CSS file! -->
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<!-- ABOUT PAGE -->
<!-- TODO: Navbar here -->
<nav>
<ul>
<li>
<a href="#Home">Home</a>
</li>
<li>
<a href="#Menu">Menu</a>
</li>
<li>
<a href="#About">About</a>
</li>
<li>
<a href="#Contact">Contact</a>
</li>
</ul>
</nav>
<!-- TODO: Banner Image here-->
<img id="banner" alt="Banner logo" src="./assets/images/banner.png">
<main>
<!-- About page code here -->
<h1>About Us</h1>
<h2>Locations</h2>
<ul>
<li>Las Vegas, Nevada</li>
<li>Los Angeles, California</li>
<li>Berkeley, California</li>
<li>Phoenix, Arizona</li>
</ul>
<h2>Origin Story</h2>
<img src="./assets/images/about.jpg" alt="About Pic">
<h2>Las Vegas, Nevada</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Scelerisque eu ultrices vitae auctor eu augue. Phasellus faucibus scelerisque eleifend donec pretium vulputate sapien nec sagittis. Massa eget egestas purus viverra accumsan in nisl nisi scelerisque. Sagittis id consectetur purus ut faucibus pulvinar.
</p>
</main>
</body>
</html>
5 changes: 5 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ nav a:hover {
color: darkred;
}

nav {
width: 100%;
}

#banner {
width: 100%;
height: auto;
Expand All @@ -65,6 +69,7 @@ nav a:hover {

.service {
display: inline-block;
text-align: center;
background-color: white;
border: 5px solid green;
border-radius: 5px;
Expand Down
26 changes: 25 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,29 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Remember to link to your CSS file! -->
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<!-- CONTACT PAGE -->
<!-- TODO: Navbar here -->
<nav>
<ul>
<li>
<a href="#Home">Home</a>
</li>
<li>
<a href="#Menu">Menu</a>
</li>
<li>
<a href="#About">About</a>
</li>
<li>
<a href="#Contact">Contact</a>
</li>
</ul>
</nav>
<!-- TODO: Banner Image here-->
<img id="banner" alt="Banner logo" src="./assets/images/banner.png">
<main>
<h2>Hours of Operation</h2>
<p>
Expand All @@ -20,7 +38,13 @@ <h2>Hours of Operation</h2>
</p>
<h2>Contact Info</h2>
<p>
<strong>Phone Number:</strong> TBD
<strong>Phone Number:</strong> (678)999-8212
</p>
<p>
<strong>Email:</strong> ThruThePhone@Gmail.com
</p>
<p>
<strong>Address:</strong> 123 MLK Blvd, Las Vegas, Nevada 89052
</p>
</main>
</body>
Expand Down
30 changes: 29 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,38 @@
<body>
<!-- HOME PAGE -->
<!-- TODO: Navbar here -->
<nav>
<ul>
<li>
<a href="#Home">Home</a>
</li>
<li>
<a href="#Menu">Menu</a>
</li>
<li>
<a href="#About">About</a>
</li>
<li>
<a href="#Contact">Contact</a>
</li>
</ul>
</nav>
<!-- TODO: Banner Image here-->
<img id="banner" alt="Banner logo" src="./assets/images/banner.png">
<main>
<h1>H-Thai-ML-Daijon</h1>
<!-- TODO: Home page code here-->
<h1>H-Thai-ML-Daijon</h1>
<h2>Its High Thai O'Clock</h2>
<div class="service">
<h3>Dine In</h3>
</div>
<div class="service">
<h3>Take Out</h3>
</div>
<div class="service">
<h3>Delivery</h3>
</div>
<img id="banner" alt="Restaurant setup" src="./assets/images/table-in-restaurant.jpg">
</main>
</body>
</html>
174 changes: 133 additions & 41 deletions menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,54 +5,146 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Remember to link to your CSS file! -->
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<!-- MENU PAGE -->
<!-- TODO: Navbar here -->
<nav>
<ul>
<li>
<a href="#Home">Home</a>
</li>
<li>
<a href="#Menu">Menu</a>
</li>
<li>
<a href="#About">About</a>
</li>
<li>
<a href="#Contact">Contact</a>
</li>
</ul>
</nav>
<!-- TODO: Banner Image here-->
<img id="banner" alt="Banner logo" src="./assets/images/banner.png">
<main>
<!-- Your job is to make the menu items in each section below a proper table! -->
Appetizers

Name Price
Chicken Satay $7.95
Fresh Rolls $6.95

Lunch

Name Price
Panang Curry $9.95
Red Curry $9.95
Yellow Curry $8.95
Tom Ka Soup $8.95
Tom Yum Soup $8.95

Dinner

Name Price
Pad Thai $10.95
Pad See Ew $10.49
Rad Nah $10.49

Dessert

Name Price
Black Sticky Rice Pudding $3.99
Mango Sticky Rice $5.99

Beverages

Name Price
Thai Iced Coffee $3.49
Thai Iced Tea $3.49
Unsweetened Iced Tea $2.49

Side Orders

Name Price
Jasmine rice $1.99
Brown rice $2.49
Cucumber Salad $2.99
<h1>Our Menu</h1>
<h2>Appetizers</h2>
<table border="1">
<tr>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>Chicken Satay</td>
<td>$7.95</td>
</tr>
<tr>
<td>Fresh Rolls</td>
<td>$6.95</td>
</tr>
</table>
<h2>Lunch</h2>
<table border="1">
<tr>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>Panang Curry</td>
<td>$9.95</td>
</tr>
<tr>
<td>Red Curry</td>
<td>$9.95</td>
</tr>
<tr>
<td>Yellow Curry</td>
<td>$8.95</td>
</tr>
<tr>
<td>Tom Ka Soup</td>
<td>$8.95</td>
</tr>
<tr>
<td>Tom Yum Soup</td>
<td>$8.95</td>
</tr>
</table>
<h2>Dinner</h2>
<table border="1">
<tr>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>Pad Thai</td>
<td>$10.95</td>
</tr>
<tr>
<td>Pad See Ew</td>
<td>$10.49</td>
</tr>
<tr>
<td>Rad Nah</td>
<td>$10.49</td>
</tr>
</table>
<h2>Dessert</h2>
<table border="1">
<tr>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>Black Sticky Rice Pudding</td>
<td>$3.99</td>
</tr>
<tr>
<td>Mango Sticky Rice</td>
<td>$5.99</td>
</tr>
</table>
<h2>Beverages</h2>
<table border="1">
<tr>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>Thai Iced Coffee</td>
<td>$3.49</td>
</tr>
<tr>
<td>Thai Iced Tea</td>
<td>$3.49</td>
</tr>
<tr>
<td>Unsweetened Iced Tea</td>
<td>$2.49</td>
</tr>
</table>
<h2>Side Orders</h2>
<table border="1">
<tr>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>Jasmine rice</td>
<td>$1.99</td>
</tr>
<tr>
<td>Brown rice</td>
<td>$2.49</td>
</tr>
<tr>
<td>Cucumber Salad</td>
<td>$2.99</td>
</tr>
</table>
</main>
</body>
</html>

0 comments on commit 75e4a48

Please sign in to comment.