-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
executable file
·93 lines (88 loc) · 3.06 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Michael Boateng" />
<meta name="description" content="About The Little Taco Shop" />
<meta name="viewport" content="width=device-width, initial-scal=1.0" />
<title>About LTS</title>
<script src="./asset/JS/main.js" defer></script>
<link rel="stylesheet" href="./asset/style.css" />
</head>
<body>
<header class="header">
<h1 class="header__h1">Littel Taco Shop</h1>
<nav class="header__nav">
<ul class="header__ul">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="./hours.html">Store Hours</a>
</li>
<li>
<a href="/#menu">Menu</a>
</li>
<li>
<a href="./contact.html">Contact</a>
</li>
<li>
<a href="#" class="active">About LTS</a>
</li>
</ul>
</nav>
</header>
<section class="hero">
<figure>
<img
src="./asset/img/pexels-jeswin-thomas-5454019.jpg"
alt="Tacos Delicioso"
width="5968"
height="3875"
title="Tacos Delicioso!"
/>
<figcaption class="offscreen">Try these Delicious Tacos</figcaption>
</figure>
</section>
<main class="main">
<article class="main__article about" id="about">
<section>
<h2>About <abbr title="Little Taco Shop">LTS</abbr></h2>
<p>
<abbr title="Littel Taco Shop">LTS</abbr> was founded in
<time timedate="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>
</section>
<aside class="about__trivia">
<h3>Taco Trivia</h3>
<details>
<summary>When did tacos appear in the United State?</summary>
<p class="about__trivia-answer">
Jeffrey M.Pilcher, taco historian and professor of history at the
University of Minnesota, says the earliest mention of tacos in the
united state are in a United State 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>
</main>
<footer class="footer">
<p>
<span class="nowrap">Copyright © <time id="year"></time></span>
<span class="nowrap">Little Taco Shop.</span>
</p>
</footer>
</body>
</html>