Skip to content

issued solved #21

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
149 changes: 149 additions & 0 deletions index1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="author" content="Dave Gray">
<meta name="description" content="The official website for The Little Taco Shop">
<title>The Little Taco Shop</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<style>
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}

th, td {
border: 1px solid #000;
padding: 8px;
text-align: left;
}

th {
background-color: #f2f2f2;
}

caption {
font-weight: bold;
margin-bottom: 10px;
}
</style>
</head>

<body>
<header>
<h1>Welcome to The Little Taco Shop</h1>
<nav>
<ul>
<li>
<a href="#about">About <abbr title="The Little Taco Shop">LTS</abbr></a>
</li>
<li>
<a href="#menu">Our Menu</a>
</li>
<li>
<a href="hours.html">Store Hours</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</nav>

<figure>
<img src="img/tacos_and_drink_400x267.png" alt="Tacos and a Drink" title="We love tacos!" width="400"
height="267">
<figcaption>
Tacos and a Drink
</figcaption>
</figure>
</header>
<hr>
<main>
<article id="about">
<h2>About <abbr title="The Little Taco Shop">LTS</abbr></h2>
<p>
<abbr title="The Little Taco Shop">LTS</abbr> was founded in <time datetime="2022">2022</time>. Our shop
was built from a <strong>love of tacos</strong> 🌮🌮🌮. We hope our shop adds a unique and interesting
place to our little town.
</p>
<aside>
<h3>Taco Trivia</h3>
<details>
<summary>When did tacos first appear in the United States?</summary>
<p>
Jeffrey M. Pilcher, taco historian and professor of history at the University of Minnesota, says
the earliest mention of tacos in the United States are in a newspaper from <time
datetime="1905">1905</time>. (Source: <cite><a
href="https://www.smithsonianmag.com/arts-culture/where-did-the-taco-come-from-81228162/"
target="_blank">Smithsonian Magazine</a></cite>)
</p>
</details>
</aside>
</article>
<hr>
<article id="menu">
<h2>Our Menu</h2>
<table>
<caption>Our Tacos</caption>
<thead>
<tr>
<th scope="col">Tacos</th>
<th scope="col"><abbr title="Quantity">Qty</abbr></th>
<th scope="col">Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Crunchy (1)</td>
<td>1</td>
<td>$1.50</td>
</tr>
<tr>
<td>Crunchy (2)</td>
<td>2</td>
<td>$2.50</td>
</tr>
<tr>
<td>Crunchy (3)</td>
<td>3</td>
<td>$3.25</td>
</tr>
<tr>
<td>Soft (1)</td>
<td>1</td>
<td>$2.00</td>
</tr>
<tr>
<td>Soft (2)</td>
<td>2</td>
<td>$3.50</td>
</tr>
<tr>
<td>Soft (3)</td>
<td>3</td>
<td>$4.50</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">Chips &amp; Salsa</td>
<td>$2.00</td>
</tr>
</tfoot>
</table>
<br>
<p>
<a href="#">Back To Top</a>
</p>
</article>
</main>
<hr>
<footer>
<p>Copyright &copy; The Little Taco Shop</p>
</footer>
</body>

</html>