-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (138 loc) · 3.85 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Banksie" />
<meta
name="description"
content="The official website for The Little Taco Shop"
/>
<title>The Little Taco Shop</title>
<link rel="icon" href="" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<header class="header">
<h1 class="header__h1">Little Taco Shop</h1>
<nav class="header__nav">
<ul class="header__ul">
<li>
<a href="#menu">Menu</a>
</li>
<li>
<a href="storehours.html">Hours</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="about.html">About</a>
</li>
</ul>
</nav>
</header>
<section class="hero">
<h2 class="hero__h2">Bienvenidos!</h2>
<figure>
<img
src="/Taco Shop Img.webp"
alt="Tacos and a Drink"
title="We love Tacos!"
width="1000"
height="667"
/>
<figcaption class="offscreen">Tacos and a Drink</figcaption>
</figure>
</section>
<main>
<article id="about">
<h2>About <abbr title="The Little Taco Shop">LTS</abbr></h2>
<p>
<abbr title="Little Tacos 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.smithsonia.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>Tacos</th>
<th scope="col"><abbr title="Quantity">Qty</abbr></th>
<th scope="col">Price</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" rowspan="3">Crunchy</th>
<td>1</td>
<td>$01.50</td>
</tr>
<tr>
<td>2</td>
<td>$02.50</td>
</tr>
<tr>
<td>3</td>
<td>$03.50</td>
</tr>
<tr>
<th scope="row" rowspan="3">Soft</th>
<td>1</td>
<td>$02.50</td>
</tr>
<tr>
<td>2</td>
<td>$03.50</td>
</tr>
<tr>
<td>3</td>
<td>$04.50</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Chips & Salsa $2</td>
</tr>
</tfoot>
</table>
<br />
<p><a href="#">Back to Top</a></p>
</article>
</main>
<hr />
<footer class="footer">
<p>
<span class="nowrap"> Copyright ©</span>
<span class="nowrap"> Little Taco Shop </span>
</p>
</footer>
</body>
<hr />
</html>