-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I worked on this as an assignment from a youtube video
- Loading branch information
0 parents
commit 93b4bb0
Showing
5 changed files
with
217 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
<title>Contact LTS</title> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Contact Information</h1> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="#about">About LTS</a></li> | ||
<li><a href="#menu">Our Menu</a></li> | ||
<li><a href="storetimings.html">Store Hours</a></li> | ||
</ul> | ||
<figure> | ||
<img src="img/taco2.jpg" alt="Taco Image was unable to load" title="All kinds of tacos at LTS" width="300" height="200"/> | ||
<figcaption>Huge Menu of LTS</figcaption> | ||
</figure> | ||
</header> | ||
<hr> | ||
<main> | ||
<h2> Contact form</h2> | ||
<form action="https://httpbin.org/get" method="get"> | ||
<fieldset> | ||
<legend>Send us a message</legend> | ||
<p> | ||
<label for="firstname">Your First Name:</label> | ||
<input type="text" id="firstname" name="firstname" placeholder="Jack" required/> | ||
</p> | ||
<p> | ||
<label for="lastname">Your Last Name:</label> | ||
<input type="text" id="lastname" name="lastname" placeholder="Oliver" required/> | ||
</p> | ||
<p> | ||
<textarea name="message" id="message" rows="10" cols="40" placeholder="your message"></textarea> | ||
</p> | ||
</fieldset> | ||
<button type="submit">Submit</button> | ||
<button type="reset">Reset</button> | ||
</form> | ||
<h2>Location & Mobile Number</h2> | ||
<address> | ||
<p> | ||
Tacobow Town,<br> | ||
New Jersey, MO 54567-6554 | ||
</p> | ||
Phone Number- 665-777-6656 | ||
</address> | ||
<p> | ||
<a href="#">Back to Top</a> | ||
</p> | ||
</main> | ||
<footer> | ||
<hr> | ||
<p>Copyright© The Little Tacos Shop</p> | ||
</footer> | ||
</body> | ||
</html> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>lots of tacos</title> | ||
<meta charset="UTF-8"> | ||
<meta name="author" content="Muzammil Saifi"> | ||
<meta name="discription" content="main page of the little taco shop website"> | ||
<link rel="stylesheet" href="style.css" type="text/css"> | ||
<link rel="icon" href="favicon.ico" type="image/x-icon" /> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Welcome To The Little Taco Shop</h1> | ||
<nav aria-label="primary-navigation"> | ||
<ul> | ||
<li><a href=#about>About LTS</a></li> | ||
<li><a href=#menu>Our Menu</a></li> | ||
<li><a href="contact.html">Contact Info</a></li> | ||
<li><a href="storetimings.html">Store hours</a></li> | ||
</ul> | ||
</nav> | ||
<figure> | ||
<img src="img/taco1.jpg" alt='taco image failed to load :(' title="tacos with a drink" width="300" height="200"/> | ||
<figcaption>Tacos with a cold drink</figcaption> | ||
</figure> | ||
</header> | ||
<hr> | ||
<main> | ||
<article id="about"> | ||
<h2>About <abbr title="Little Taco Shop">LTS</abbr></h2> | ||
<p> | ||
We are just a small business that just got started in the town. Hopefully we add our own flavour in this colorful town and share our <strong>love of tacos 🌮🌮🌮</strong>.Thanks for reading | ||
</p> | ||
<h3>Taco Trivia</h3> | ||
<aside> | ||
<details> | ||
<summary>Did You Know There Is An Indian Variation of Taco?</summary> | ||
<p>What started in the late 1800s as sustenance concocted from government rations of lard, flour, salt and baking powder later became a staple in American Indian homes and at pow wows. | ||
</p> | ||
</details> | ||
</aside> | ||
</article> | ||
<hr> | ||
<article id="menu"> | ||
<h2>Menu</h2> | ||
<table> | ||
<tr> | ||
<th colspan="3" scope="row">Our Tacos</th> | ||
</tr> | ||
<tr> | ||
<th scope="col">Name</th> | ||
<th scope="col">Qty</th> | ||
<th scope="col">Price</th> | ||
</tr> | ||
<tr> | ||
<th rowspan="3" scope="row">Crunchy</th> | ||
<td>1</td> | ||
<td>$1.50</td> | ||
</tr> | ||
<tr> | ||
<td>2</td> | ||
<td>$2.50</td> | ||
</tr> | ||
<tr> | ||
<td>3</td> | ||
<td>$3.50</td> | ||
</tr> | ||
<tr> | ||
<th rowspan="3" scope="row">Soft</th> | ||
<td>1</td> | ||
<td>$2.50</td> | ||
</tr> | ||
<tr> | ||
<td>2</td> | ||
<td>$3.00</td> | ||
</tr> | ||
<tr> | ||
<td>3</td> | ||
<td>$4.50</td> | ||
</tr> | ||
<tr> | ||
<td colspan="3">Chips & Salsa $2</td> | ||
</tr> | ||
</table> | ||
<p> | ||
<a href=#>Back to Top</a> | ||
</p> | ||
</article> | ||
</main> | ||
<hr> | ||
<footer> | ||
<p> | ||
Copyright© Little Tacos | ||
</p> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
<title>Store Timings</title> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>LTS Store Hours</h1> | ||
<nav aria-label="primary-navigation"> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href=#about>About LTS</a></li> | ||
<li><a href=#menu>Our Menu</a></li> | ||
<li><a href="contact.html">Contact Info</a></li> | ||
</ul> | ||
</nav> | ||
<figure> | ||
<img src="img/taco3.jpg" alt="Crunchy tacos at LTS image failed to load" title="Crunchy tacos at LTS" width="300" height="275"/> | ||
<figcaption>Crunchy Tacos that every customer is served</figcaption> | ||
</figure> | ||
</header> | ||
<hr> | ||
<main> | ||
<h2>We are open 6 days a week!</h2> | ||
<dl> | ||
<dt>Monday to Thursday</dt> | ||
<dd>11am-9pm</dd> | ||
<dt>Friday to Saturday</dt> | ||
<dd>11am-11pm</dd> | ||
</dl> | ||
</main> | ||
<hr> | ||
<footer> | ||
<p>Copyright© Little Taco Shop</p> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
html { | ||
font-size: 16px; | ||
} | ||
|
||
body { | ||
min-height: 100vh; | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 1rem; | ||
border-left: 1px solid #333; | ||
border-right: 1px solid #333; | ||
} | ||
|
||
th, td, caption { | ||
border: 1px solid #333; | ||
font-family: 'Courier New', Courier, monospace; | ||
border-collapse: separate; | ||
padding: 0.5rem; | ||
} | ||
|
||
button{ | ||
color:grey; | ||
} |