-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (101 loc) · 3.63 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Timi Adeleke">
<meta name="description" content="The Official Website of The Little Taco Shop">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Little Taco Shop</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>Welcome to the Little Taco Shop</h1>
<nav>
<ul>
<li><a href="#about">About LTS</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>
</div>
</header>
<main>
<section id="hero">
<img src="image/taco3.jpg" alt="Sweet tacos">
<img src="image/taco2.jpg" alt="Nice yummy tacos">
<img src="image/taco.jpg" alt="Tacos and a drink" title="We love tacos!">
<h2>Best Tacos in the world</h2>
</section>
<section id="about" class="container">
<h2>About LTS</h2>
<p>LTS was founded in <time datetime="2022">2022</time>. Our shop was born 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>The earliest mention of tacos in the United States is in a newspaper from <time datetime="1905">1905</time>.</p>
</details>
</aside>
</section>
<section id="menu" class="container">
<h2>Our Menu</h2>
<table>
<caption>Our Tacos</caption>
<thead>
<tr>
<th scope="col">Taco Type</th>
<th scope="col">Qty</th>
<th scope="col">Price</th>
</tr>
</thead>
<tbody>
<tr>
<th 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.25</td>
</tr>
<tr>
<th scope="row">Soft</th>
<td>1</td>
<td>$2.00</td>
</tr>
<tr>
<td>2</td>
<td>$3.50</td>
</tr>
<tr>
<td>3</td>
<td>$4.50</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Chips & Salsa $2</td>
</tr>
</tfoot>
</table>
<br>
<p><a href="#" class="back-to-top">Back to Top</a></p>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 The Little Taco Shop. All rights reserved.</p>
</div>
<address>Houston,Texas USA.</address>
</footer>
<script src="script.js"></script>
</body>
</html>