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

project is basically done #13

Open
wants to merge 3 commits into
base: master
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# Activity: Restaurant Menu

https://github.com/AbyssWatching/HTML-Restaurant-Menu/settings
25 changes: 25 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,39 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<!-- Remember to link to your CSS file! -->
</head>
<body>
<!-- ABOUT PAGE -->
<header>
<nav>
<ul>
<li><a href="./about.html">About</a></li>
<li><a href="./contact.html">contact</a></li>
<li><a href="./index.html">Home</a></li>
<li><a href="./menu.html">Menu</a></li>
</ul>
</nav>
<img id="banner" src="./assets/images/banner.png">
</header>
<!-- TODO: Navbar here -->
<!-- TODO: Banner Image here-->
<main>
<!-- About page code here -->

<h1>About US!</h1>
<h2>Locations</h2>
<ul>
<li>Las Vegas NV</li>
<li>Creech AFB NV</li>
<li>Gunsan Korea</li>
<li>Tokyo Japan</li>
</ul>
<h2>Origin Story</h2>
<img src="./assets/images/about.jpg" alt="Sic cups of assorted seeds">

<p>Tokyo is where we started, there was a lack of Thai resteraunts in Japan CAN YOU BELIEVE IT?</p>
</main>
</body>
</html>
11 changes: 7 additions & 4 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ main {
nav {
background-color: beige;
padding: 10px;
width: 100%;
}

nav ul {
Expand All @@ -53,14 +54,15 @@ nav a:hover {
}

#banner {
width: 100%;
width: 60%;
height: auto;
background-color: white;
}

#banner img {
width: 60%;
width: 100%;
height: auto;

}

.service {
Expand All @@ -70,8 +72,9 @@ nav a:hover {
border-radius: 5px;
color: darkred;
font-size: 2em;
padding: 20px;
margin: 10px;
padding: 10px;
margin: 5px;
text-align: center;
}

table {
Expand Down
30 changes: 29 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,22 @@
<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="path/to/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<!-- CONTACT PAGE -->
<header>
<nav>
<ul>
<li><a href="./about.html">About</a></li>
<li><a href="./contact.html">contact</a></li>
<li><a href="./index.html">Home</a></li>
<li><a href="./menu.html">Menu</a></li>
</ul>
</nav>
<img id="banner" src="./assets/images/banner.png">
</header>
<!-- TODO: Navbar here -->
<!-- TODO: Banner Image here-->
<main>
Expand All @@ -20,8 +33,23 @@ <h2>Hours of Operation</h2>
</p>
<h2>Contact Info</h2>
<p>
<strong>Phone Number:</strong> TBD
<i class="fa fa-phone" aria-hidden="true"></i><strong>Phone Number:</strong> 1-800-502-2222
</p>
<br>
<p>
<strong>Adress</strong> 1 Imaginary lane
</p>
<br>
<p>
<strong>Email</strong> Imaginary@madeup.com
</p>

<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"/>

</main>
</body>
</html>
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,33 @@
</head>
<body>
<!-- HOME PAGE -->
<header>
<nav>
<ul>
<li><a href="./about.html">About</a></li>
<li><a href="./contact.html">contact</a></li>
<li><a href="./index.html">Home</a></li>
<li><a href="./menu.html">Menu</a></li>
</ul>
</nav>
<img id="banner" src="./assets/images/banner.png" alt="Picture of a table at our restauraunt">
</header>
<!-- TODO: Navbar here -->
<!-- TODO: Banner Image here-->
<main>
<h1>H-Thai-ML</h1>
<!-- TODO: Home page code here-->
<h2>putting the H in Thai</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 src="./assets/images/table-in-restaurant.jpg">
</main>
</body>
</html>
184 changes: 154 additions & 30 deletions menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,54 +5,178 @@
<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 -->
<header>
<nav>
<ul>
<li><a href="./about.html">About</a></li>
<li><a href="./contact.html">contact</a></li>
<li><a href="./index.html">Home</a></li>
<li><a href="./menu.html">Menu</a></li>
</ul>
</nav>
<img id="banner" src="./assets/images/banner.png">
</header>
<!-- TODO: Navbar here -->

<!-- TODO: Banner Image here-->
<main>
<!-- Your job is to make the menu items in each section below a proper table! -->
Appetizers
<h1>Our Menu</h1>

<h2>Appetizers</h2>

<table>
<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>

Name Price
Chicken Satay $7.95
Fresh Rolls $6.95
<table>
<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>

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
<h2>Dinner</h2>

Dinner
<table>
<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>

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


Dessert
<h2>Dessert</h2>

Name Price
Black Sticky Rice Pudding $3.99
Mango Sticky Rice $5.99
<table>
<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>




Beverages
<h2>Beverages</h2>

Name Price
Thai Iced Coffee $3.49
Thai Iced Tea $3.49
Unsweetened Iced Tea $2.49
<table>
<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>





Side Orders
<h2>Side Orders</h2>

<table>
<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>



Name Price
Jasmine rice $1.99
Brown rice $2.49
Cucumber Salad $2.99

</main>
</body>
</html>