Skip to content
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
61 changes: 61 additions & 0 deletions tutorial/ct_about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Tutorial Case
General Information about Curbside Thai
Author: Travis Avenevoli
Date: Sep. 5th, 2018

Filename:ct_about.html
-->
<meta charset="utf-8" />
<meta name="keywords"
content="Thai, restaurant, Charlotte, food" />
<title>About Curbside Thai</title>
<link href = "ct_base.css" rel = "stylesheet" />
<link href = "ct_layout2.css" rel = "stylesheet" />
<style></style>
</head>
<body>
<header>
<a href="ct_start.html"><img src="ct_logo2.png" alt="Curbsite Thai" /></a>
<nav>
<ul>
<li> <a href="ct_about.html"> About </a></li>
<li> <a href="ct_locations.html"> Locations </a></li>
<li> <a href="ct_menu.html"> Menu </a></li>
<li> <a href="ct_reviews.html"> Reviews </a></li>
<li> <a href="ct_catering.html"> Catering </a></li>
<li> <a href="ct_contact.html"> Contact </a></li>
</ul>
</nav>
</header>
<article>
<h1>About Us</h1>
<img src = "ct_photo1.png" alt = "" />
<p><strong>Curbside Thai</strong> brings the rich flavor of Thailand to
North Carolina. Master Chef Sajja Adulet, with over 35
years of experience at the House of Asia, now offers
that same fine dining to the streets of Charlotte
with our modern mobile food truck.</p>

<p>This is not bland vendor food packaged in greasy
paper boxes! Sample his acclaimed cuisine at our various
mobile locations throughout downtown Charlotte from
11 a.m. to 7 p.m. on Monday through Thursday, and
11 a.m. to 11 p.m. on Friday and Saturday. Taste the
difference! If you can't get away from your desk,
<em>Curbside Thai will deliver.</em></p>

<p>Contact us to cater your next party and experience
what <cite>Carolina Traveler</cite> calls <q>The finest Asian food
on or off the streets of Charlotte</q>.</p>
</article>
<footer>
Curside Thai &#8226; 411 Belde Drive, Charlotte NC &nbsp; 28201 &#8226; 704-555-1151
</footer>
</body>
</html>
63 changes: 63 additions & 0 deletions tutorial/ct_catering.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!doctype html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Tutorial Case

Curbside Thai Catering Page
Author:
Date:

Filename: ct_catering.html
-->

<meta charset="utf-8" />
<title>Catering by Curbside Thai</title>
<link href="ct_base.css" rel="stylesheet" />
<link href="ct_layout2.css" rel="stylesheet" />
</head>

<body>
<header class="logo">
<a href="ct_start.html"><img src="ct_logo2.png" alt="Curbsite Thai" /></a>
<nav>
<ul>
<li> <a href="ct_about.html"> About </a></li>
<li> <a href="ct_locations.html"> Locations </a></li>
<li> <a href="ct_menu.html"> Menu </a></li>
<li> <a href="ct_reviews.html"> Reviews </a></li>
<li> <a href="ct_catering.html"> Catering </a></li>
<li> <a href="ct_contact.html"> Contact </a></li>
</ul>
</nav>
</header>
<article>
<h1>Catering</h1>
<img src = "ct_photo2.png" alt = "" />
<p>Since 2010 Curbside Thai has provided top-class catering for weddings
and special events. We cover Charlotte and large regions of North
Carolina with our mobile food truck, built specially for catering big
events.</p>

<p>Meals are cooked up hot and on the spot at your venue. We have an
experienced uniformed catering crew providing professional service for
events ranging from 50 to 300. We will provide the plates, linens,
glassware and other dining items, upon request.</p>

<p>Curbside Thai is licensed to do full bar service catering with a wide
range of spirits, beer, and wine! Ask us about a custom drink menu
for your wedding or private event. We also can provide an array of
great specialty Asian teas and drinks.</p>

<p>Impress your friends and co-workers with a Curbside Thai-catered
event!</p>

</article>
<footer>
Curbside Thai &#8226; 411 Belde Drive, Charlotte NC &nbsp; 28201 &#8226; 704-555-1151
</footer>
</body>

</html>
56 changes: 56 additions & 0 deletions tutorial/ct_contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<!doctype html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Tutorial Case

Curbside Thai Contact Information
Author:
Date:

Filename: ct_contact.html
-->

<meta charset="utf-8" />
<title>Contacting Curbside Thai</title>
<link href="ct_base.css" rel="stylesheet" />
<link href="ct_layout2.css" rel="stylesheet" />
</head>

<body>
<header class="logo">
<a href="ct_start.html"><img src="ct_logo2.png" alt="Curbsite Thai" /></a>
<nav>
<ul>
<li> <a href="ct_about.html"> About </a></li>
<li> <a href="ct_locations.html"> Locations </a></li>
<li> <a href="ct_menu.html"> Menu </a></li>
<li> <a href="ct_reviews.html"> Reviews </a></li>
<li> <a href="ct_catering.html"> Catering </a></li>
<li> <a href="ct_contact.html"> Contact </a></li>
</ul>
</nav>
</header>
<article>
<h1>Contact Us</h1>
<p>Contact Curbside Thai for your next event or just to find
out when our mobile truck will next be in your area.
Employment opportunities available now!</p>

<address>Curbside Thai<br />
411 Belde Drive<br />
Charlotte NC 28201
</address>

<p>Call: <a href = "tel:+17045551151">(704) 555-1151</a></p>
<p>Email: <a href="mailto:curbside.thai@example.com">curbside.thai@example.com</a></p>

</article>
<footer>
Curbside Thai &#8226; 411 Belde Drive, Charlotte NC &nbsp; 28201 &#8226; 704-555-1151
</footer>
</body>

</html>
55 changes: 55 additions & 0 deletions tutorial/ct_locations.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!doctype html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Tutorial Case

Curbside Thai Locations
Author:
Date:

Filename: ct_locations.html
-->

<meta charset="utf-8" />
<title>Locations of the Curbside Thai Truck</title>
<link href="ct_base.css" rel="stylesheet" />
<link href="ct_layout2.css" rel="stylesheet" />
</head>

<body>
<header class="logo">
<a href="ct_start.html"><img src="ct_logo2.png" alt="Curbsite Thai" /></a>
<nav>
<ul>
<li> <a href="ct_about.html"> About </a></li>
<li> <a href="ct_locations.html"> Locations </a></li>
<li> <a href="ct_menu.html"> Menu </a></li>
<li> <a href="ct_reviews.html"> Reviews </a></li>
<li> <a href="ct_catering.html"> Catering </a></li>
<li> <a href="ct_contact.html"> Contact </a></li>
</ul>
</nav>
</header>
<article>
<h1>Today's Locations</h1>
<img src="ct_map.png" alt="" />
<dl id="ct_locations">
<dt>11 a.m. to 2 p.m.</dt>
<dd>205 West 3rd Street, Charlotte, NC</dd>
<dt>2 p.m. to 4 p.m.</dt>
<dd>443 West 2nd Street, Charlotte, NC</dd>
<dt>4 p.m. to 8 p.m.</dt>
<dd>900 South Mint Street, Charlotte, NC</dd>
<dt>8 p.m. to 11 p.m.</dt>
<dd>168 North Church Street, Charlotte, NC</dd>
</dl>
</article>
<footer>
Curbside Thai &#8226; 411 Belde Drive, Charlotte NC &nbsp; 28201 &#8226; 704-555-1151
</footer>
</body>

</html>
70 changes: 70 additions & 0 deletions tutorial/ct_menu.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!doctype html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Tutorial Case

Curbside Thai Mobile Menu
Author:
Date:

Filename: ct_menu.html
-->

<meta charset="utf-8" />
<title>Curbside Thai Mobile Menu</title>
<link href="ct_base.css" rel="stylesheet" />
<link href="ct_layout2.css" rel="stylesheet" />
</head>

<body>
<header class="logo">
<a href="ct_start.html"><img src="ct_logo2.png" alt="Curbsite Thai" /></a>
<nav>
<ul>
<li> <a href="ct_about.html"> About </a></li>
<li> <a href="ct_locations.html"> Locations </a></li>
<li> <a href="ct_menu.html"> Menu </a></li>
<li> <a href="ct_reviews.html"> Reviews </a></li>
<li> <a href="ct_catering.html"> Catering </a></li>
<li> <a href="ct_contact.html"> Contact </a></li>
</ul>
</nav>
</header>
<article>
<h1>Mobile Menu</h1>
<dl>
<dt>Basil Beef Sesame Salad</dt>
<dd>Spicy Angus beef and sweet basil on top of fresh spring mix,
red cabbage, carrot, cucumber and tomatoes; served with
sesame vinaigrette ($9.95)</dd>
<dt>Curbside Rice</dt>
<dd>Stir-fried rice with onions, red bell peppers, peas and
carrots, garnished with red cabbage, cucumbers, scallions,
and fried garlic ($6.50); add chicken ($8.50)
or shrimp ($9.50)</dd>
<dt>Garlic Pepper Pork</dt>
<dd>Marinated pork stir-fried with fresh garlic and pepper;
served with steamed Jasmine rice, red cabbage, carrot,
cucumbers, scallions, and fried garlic ($8.50)</dd>
<dt>Pad Thai</dt>
<dd>Stir-fried rice noodles with bean sprouts and chives,
garnished with red cabbage, carrot,
scallions, lime, and crushed peanuts ($7.50);
add chicken ($8.50) or shrimp ($9.50)</dd>
<dt>Thai Red Curry</dt>
<dd>Traditional red curry sauce cooked in coconut milk with
bamboo shoots, fresh basil, lime, and Thai chili and
served on a bed of steamed Jasmine rice ($7.50); add
chicken ($8.50) or shrimp ($9.50)</dd>
</dl>

</article>
<footer>
Curbside Thai &#8226; 411 Belde Drive, Charlotte NC &nbsp; 28201 &#8226; 704-555-1151
</footer>
</body>

</html>
71 changes: 71 additions & 0 deletions tutorial/ct_reviews.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!doctype html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Tutorial Case

Curbside Thai Reviews Page
Author:
Date:

Filename: ct_reviews.html
-->

<meta charset="utf-8" />
<title>Curbside Thai Reviews</title>
<link href="ct_base.css" rel="stylesheet" />
<link href="ct_layout2.css" rel="stylesheet" />
</head>

<body>
<header class="logo">
<a href="ct_start.html"><img src="ct_logo2.png" alt="Curbsite Thai" /></a>
<nav>
<ul>
<li> <a href="ct_about.html"> About </a></li>
<li> <a href="ct_locations.html"> Locations </a></li>
<li> <a href="ct_menu.html"> Menu </a></li>
<li> <a href="ct_reviews.html"> Reviews </a></li>
<li> <a href="ct_catering.html"> Catering </a></li>
<li> <a href="ct_contact.html"> Contact </a></li>
</ul>
</nav>
</header>
<article>
<h1>Reviews</h1>

<blockquote>
<p>The culinary art of the food truck vendor has been steadily
improving over the last 10 years with fine offerings from
Antonio's Italian, Organic on the Road, and now Curbside Thai.
Sajja Adulet is to be congratulated for offering delicious
and authentic Thai food at a reasonable price. We think
Curbside Thai provides the finest Asian food on or off
the streets of Charlotte.</p>
<p>Charolina Traveler</p>
</blockquote>

<blockquote>
<p>Steaming rice with a spicy Asian sauce is common street fare
and we all accept its limitations in exchange for the
convenience of a quick bite on the run. With Curbside Thai you
don't have to compromise. Building on his experience as a
master chef at several fine establishments on the East Coast,
Sajja Adulet has brought the taste of fine dining to the
Food Cart Wars and we couldn't be happier.</p>
<p>Food Cart Review</p>
</blockquote>

<blockquote>
<p>Best in Show (Asian)</p>
<p>Food Cart Cook-off</p>
</blockquote>

<blockquote>
<p>First Prize (Vendor)</p>
<p>Vendy Awards</p>
</blockquote>

</html>