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

Finished restaurant menu #14

Open
wants to merge 2 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
57 changes: 49 additions & 8 deletions about.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<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>
</head>
<body>
<!-- ABOUT PAGE -->

<!-- TODO: Navbar here -->
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="menu.html">Menu</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
src="https://media.istockphoto.com/vectors/creative-fork-and-elephant-logo-icon-vector-on-white-background-vector-id1359820683?k=20&m=1359820683&s=612x612&w=0&h=9-30yZPjzgPvd0rTv_-VZopTYrNAtfegDvzGvmbDR0A="
/>
<main>
<!-- About page code here -->
<!-- About page code here -->
<h1>About Us</h1>
<h2>Locations</h2>
<ul>
<li>5225 E Cornwall St, Chicago,Il,10052</li>
<li>2222 Hollywood Blvd, Los Angeles,CA,90065</li>
<li>3333 E Kingsessing Dr, Philadelphia,PA,10078</li>
<li>4444 W Woodrow St, Seattle,Wa,55555</li>
<h2>Origin Story</h2>
<img
alt="about us"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRU3ETi0BFm99q5xE1Jr4QL3ahA3WrIKJGikg&usqp=CAU"
/>
<p>
Lorem ipsum dolor sit amet, cu putant vituperata sadipscing sit, cum
tale dolore voluptua id. Eu eam albucius argumentum cotidieque. Purto
noster expetendis id pri. Propriae periculis vel cu. Brute
intellegebat no vel, vim inermis accumsan explicari an. Eu possim
interesset ius, nostro omittam his ut.
</p>
</ul>
</main>
</body>
</html>
</body>
</html>
13 changes: 12 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,15 @@ td,
th {
border: 1px solid black;
padding: 5px;
}
}

nav {
width: 100%;
}

.service {
display: inline-block;
text-align: center;
}


60 changes: 42 additions & 18 deletions contact.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- Remember to link to your CSS file! -->
</head>
<body>
<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
src="https://media.istockphoto.com/vectors/creative-fork-and-elephant-logo-icon-vector-on-white-background-vector-id1359820683?k=20&m=1359820683&s=612x612&w=0&h=9-30yZPjzgPvd0rTv_-VZopTYrNAtfegDvzGvmbDR0A="
/>
<main>
<h2>Hours of Operation</h2>
<p>
<strong>Monday-Friday:</strong> 11:00am-8:30pm
</p>
<p>
<strong>Saturday-Sunday:</strong> 1:00pm-10:00pm
</p>
<h2>Contact Info</h2>
<p>
<strong>Phone Number:</strong> TBD
</p>
<h2>Hours of Operation</h2>
<p><strong>Monday-Friday:</strong> 11:00am-8:30pm</p>
<p><strong>Saturday-Sunday:</strong> 1:00pm-10:00pm</p>
<h2>Contact Info</h2>
<ul>
<li>2222 Hollywood Blvd, Los Angeles,CA,90065</li>
<li>H-Thai-ml@gmail.com</li>
</ul>
<p><strong>Phone Number:</strong>562-222-2222</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>
</body>
</html>
56 changes: 46 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>H-Thai-ML</title>
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
</head>
<body>
<!-- HOME PAGE -->
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="menu.html">Menu</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<!-- TODO: Navbar here -->
<!-- TODO: Banner Image here-->
<main>
<h1>H-Thai-ML</h1>
<!-- TODO: Home page code here-->
<h1>H-Thai-ML</h1>
<!-- TODO: Home page code here-->
<img
id="banner"
alt="Banner logo"
src="https://media.istockphoto.com/vectors/creative-fork-and-elephant-logo-icon-vector-on-white-background-vector-id1359820683?k=20&m=1359820683&s=612x612&w=0&h=9-30yZPjzgPvd0rTv_-VZopTYrNAtfegDvzGvmbDR0A="
/>
<h1>H-Thai-ML</h1>
<h2>Little Place Big Taste!</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
alt="tables-in-restaurant"
src="https://www.nrn.com/sites/nrn.com/files/styles/article_featured_retina/public/trending%20tables.jpg?itok=s8lvUOQg"
/>
</main>
</body>
</html>
</body>
</html>
Loading