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

Menu n shit #4

Open
wants to merge 1 commit 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
34 changes: 33 additions & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,46 @@
<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 -->
<!-- TODO: Navbar here -->
<nav>
<ul>
<li> <a href="menu.html" > Menu </a>
</li>
<li>
<a href="index.html"> Home Page </a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html"> Contact</a>
</li>
</ul>

</nav>
<!-- TODO: Banner Image here-->
<img id="banner" src="assets/images/banner.png" alt >
<!-- TODO: Banner Image here-->
<main>
<!-- About page code here -->
<h1> <em>About Us ! </em></h1>
<hr>
<h2>Our Locations</h2>
<ul>
<li>Venus</li>
<li>Yo mommas</li>
<li>Texas</li>
<li>The Dark Side Of The Moon</li>
</ul>
<h2> Origin Story</h2>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTl_gU_VqbC0jr9v7YwV_YUDrdqaG1yQbIhEw&usqp=CAU" alt="Thai food">
<p>Im but a humble chicken farmer in da souf of new orleanes, one day i tasted one of the best asian food and wanted to
make my own resturant and they said" Custah, you crazie. Aint no one wanna buy thai food from some chicken farmer" and here I am with a shop on the Dark Side of The Moon!
</p>
</main>
</body>
</html>
5 changes: 3 additions & 2 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ nav a:hover {
}

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

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

Expand All @@ -75,6 +75,7 @@ nav a:hover {
}

table {
text-indent: initial;
border: 3px solid black;
width: 100%;
}
Expand Down
35 changes: 34 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,35 @@
<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">
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"/>
<!-- Remember to link to your CSS file! -->
</head>
<body>
<!-- CONTACT PAGE -->
<!-- TODO: Navbar here -->
<nav>
<ul>
<li> <a href="menu.html" > Menu </a>
</li>
<li>
<a href="index.html"> Home Page </a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html"> Contact</a>
</li>
</ul>

</nav>
<!-- TODO: Banner Image here-->
<img id="banner" src="assets/images/banner.png" alt >
<!-- TODO: Banner Image here-->
<main>
<h2>Hours of Operation</h2>
Expand All @@ -20,7 +44,16 @@ <h2>Hours of Operation</h2>
</p>
<h2>Contact Info</h2>
<p>
<strong>Phone Number:</strong> TBD
<strong>
<i class="fa fa-phone" aria-hidden="true"></i>Phone Number:</strong> 757-800-8135
</p>
<p>
<strong>
<i class="fa fa-envelope" aria-hidden="true"></i> Email:</strong>CleetusChiken@hotmail.com
</p>
<p>
<strong>
<i class="fa fa-address-card" aria-hidden="true"></i>Address:</strong> 334 The Dark side of the Moon
</p>
</main>
</body>
Expand Down
27 changes: 27 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,37 @@
<body>
<!-- HOME PAGE -->
<!-- TODO: Navbar here -->
<nav>
<ul>
<li> <a href="menu.html" > Menu </a>
</li>
<li>
<a href="index.html"> Home Page </a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html"> Contact</a>
</li>
</ul>

</nav>
<!-- TODO: Banner Image here-->
<img id="banner" src="assets/images/banner.png" alt >
<main>
<h1>H-Thai-ML</h1>
<!-- TODO: Home page code here-->
<h2> Quip thwip </h2>
<div class="service">
<h3>Dine In </h3>
<h3> Take Out</h3>
<h3>Delivery</h3>

</div>
<img src="assets/images/table-in-restaurant.jpg" alt="tables"


</main>
</body>
</html>
173 changes: 137 additions & 36 deletions menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,55 +4,156 @@
<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>
<!-- MENU PAGE -->
<!-- TODO: Navbar here -->
<nav>
<ul>
<li> <a href="menu.html" > Menu </a>
</li>
<li>
<a href="index.html"> Home Page </a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html"> Contact</a>
</li>
</ul>

</nav>
<!-- TODO: Banner Image here-->
<img id="banner" src="assets/images/banner.png" alt >
<!-- TODO: Banner Image here-->
<main>
<h1>Da Menu </h1>

<!-- Your job is to make the menu items in each section below a proper table! -->
Appetizers

<h2>Appetizers</h2>
<table>
<thead>
<tbody>
<tr>
<td>Name</td> <td>Price</td>
</tr>
<tr>
<th>Chicken Satay</th> <th>$7.95</th>
</tr>
<tr>
<th>Fresh Rolls</th> <th>$6.95</th>
</tr>
</tbody>
</thead>
</table>

Name Price
Chicken Satay $7.95
Fresh Rolls $6.95
<h2>Lunch</h2>
<table>
<thead>
<tbody>
<tr>
<td>Name</td><td>Price</td>
</tr>
<tr>
<th>Panang Curry</th> <th>$9.95</th>
</tr>
<tr>
<th>Red Curry</th> <th>$9.95</th>
</tr>
<tr>
<th>Yellow Curry</th><th>$8.95</th>
</tr>
<tr>
<th>Tom Ka Soup</th><th>$8.95</th>
</tr>
<tr>
<th>Tom Yum Soup</th><th>$8.95</th>
</tr>
</tbody>
</thead>
</table>

<h2>Dinner</h2>
<table>
<thead>
<tbody>
<tr>
<td>Name</td><td>Price</td>
</tr>
<tr>
<th>Pad Thai</th><th>$10.95</th>
</tr>
<tr>
<th>Pad See Ew</th><th>$10.49</th>
</tr>
<tr>
<th>Red Nah</th><th>$10.49</th>
</tr>
</tbody>
</thead>
</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

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
<h2>Dessert</h2>
<table>
<thead>
<tbody>
<tr>
<td>Name</td> <td>Price</td>
</tr>
<tr>
<th>Black Sticky Rice Pudding</th> <th>$3.99</th>
</tr>
<tr>
<th>Mango Sticky Rice</th> <th>$5.99</th>
</tr>

</tbody>
</thead>
</table>

Name Price
Thai Iced Coffee $3.49
Thai Iced Tea $3.49
Unsweetened Iced Tea $2.49
<h2>Beverages</h2>
<table>
<thead>
<tbody>
<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>
</tbody>
</thead>
</table>

Side Orders
<h2>Side Pieces</h2>
<table>
<thead>
<tbody>
<tr>
<th>Name</th> <th>Price</th>
</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>
</tbody>
</thead>
</table>

Name Price
Jasmine rice $1.99
Brown rice $2.49
Cucumber Salad $2.99
</main>
</body>
</html>