Skip to content

added my htmlfile #24

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 2 commits 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
77 changes: 77 additions & 0 deletions 10_lesson_starter/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div>
<h1 id="top">Welcome to The Little Taco Shop</h1>
<nav>
<ul>
<li><a>About LTS</a></li>
<li><a>Our Menu</a></li>
<li><a>Store hours</a></li>
<li><a>Contact hours</a></li>
</ul>
</nav>
<img src="img/tacos_and_drink_400x267.png" alt="tacos_and_drink_400x267">
<figcaption>Tacos and Drink</figcaption><hr>
</div>
<div>
<h2>About LTS</h2>
<p>LTS was founded in 2022 , we love tacos 🌮🌮and its the best place in town</p>
<details><Summary>So what was our questio again?</Summary>
<p>this was heheheh</p></details>
<HR>
</div>
<div>
<h2>Our menu</h2>
<table border="2">
<tr>
<th colspan="3">Our Tacos</th>
</tr>
<tr>
<th>Taocs</th>
<th>Qty</th>
<th>Price</th>
</tr>
<tr>
<th>Crunchy</th>
<td>1</td>
<td>$1.5</td>
</tr>
<tr>
<th>Soft</th>
<td>1</td>
<td>$2.00</td>
</tr>
</table>
<a href="#top">Back to top</a>
</div>
<div>
<form>
<fieldset>
<legend>Send us a messaage</legend>

<p>
Name:<input type="text"><br>
Email:<input type="text">
<br>YOur messaage:<br>
<textarea rows="30" cols="30" placeholder="type your message"></textarea>
</p>

</fieldset>
<input type="submit">
<input type="button" value="cancel">
</form>
</div>
<footer>
<hr>
Copyright &copy; The little taco shop
</footer>
</body>
</html>