Hi guys!
New in HTML here:
I´m making an exercise and already built the skeleton however is missing a table with all split (final image attached) and I´m unsure if I should use a field set or a table, also cant seem to put it as the image.
I´m struggling also with arrow that seems those that we can´t hide the text but don´t know the name of the tag,
Plus the hyperlink on the bottom part .
Thank you in advance for the support
This is what I have so far but struggling with the topics above.
cod HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<h2>Welcome to The Little Taco Shop</h2>
<ol type="*">
<li>About LTSe</li>
<li>Our Menu</li>
<li>Store Hours</li>
<li>Contact Us</li>
</ol>
<img src="img/tacos_and_drink_400x267.png" width="500" />
<br />
<p>Tacos and a Drink</p>
<hr />
<h2>Abou LTS</h2>
<p>
LTS was founded in 2022. Our shop was built from a love of tacos
favicon.ico favicon.ico favicon.ico. We hope our shop adds a unique and
interesting place to our little town.
</p>
<h4>Taco Trivia</h4>
<p>When Tacos first appear in the United States?</p>
<h1>Our Menu</h1>
<table>
<tr>
<th>Our Tacos</th>
</tr>
<tr>
<th>Tacos</th>
<th>Qty</th>
<th>Price</th>
</tr>
<tr>
<th>Crunchy</th>
<td>$1</td>
<td>$2</td>
<td>$3</td>
<td>$1.50</td>
<td>$2.50</td>
<td>$3.25</td>
</tr>
<tr>
<th>Soft</th>
<td>$1</td>
<td>$2</td>
<td>$3</td>
<td>$2.00</td>
<td>$3.50</td>
<td>$4.50</td>
</tr>
</td>
</tr>
<tr>
<td>Chips & Salsa $2</td>
</tr>
</table>
<p>Back to Top</p>
<hr />
<p>Copyrith Ⓒ The Little Taco Shop</p>
</body>
</html>