-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (118 loc) · 4.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author"http-equiv="X-UA-Compatible" content="Mayur">
<meta name="viewport" content="The Official website for Giant taco shop">
<title>Contact Us- GTS</title>
<link rel="icon" href="favi-taco.jpg" type="images/x-icon">
</head>
<body>
<header>
<h1>Welcome to the Giant taco shop</h1>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/#about">About<abbr title="The Giant Taco Shop">GTS</abbr></a>
</li>
<li>
<a href="/#menu">Our menu</a>
</li>
<li>
<a href="#hours.html">Store hours</a>
</li>
</ul>
</nav>
<figure>
<img src="images/taco3.jpg" alt="Tacos3" title="THe Best" width="286" height="176">
</figure>
<figcaption>
Tacos and Tacos
</figcaption>
</header>
<hr>
<main>
<article id="about">
<h2>About</h2>
<p>
<abbr title="THE Giant Taco Shop">GTS</abbr> was found in<time datetime="2022">2022</time>. Our shop was built from a <strong>love of tacos.</strong>W e hope our shop adds a unique place to town.
</p>
<aside>
<h3>Taco Trivia</h3>
<details>
<summary>
When did Taco forst appear in United State?</summary>
<p>
Earliest taco was in a newspaper from <time datetime="1905">1905</time>.
(sources:<cite><a href="https://www.twistedtaco.com/the-history-of-the-taco#:~:text=Tacos%20are%20thought%20to%20come,to%20those%20who%20consumed%20it."></a></cite>)
</p>
</details>
</aside>
<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>$1.50</td>
</tr>
<tr>
<td>2</td>
<td>$2.50</td>
</tr>
<tr>
<td>3</td>
<td>$3.50</td>
</tr>
<tr>
<th scope="row" rowspan="3">
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="#">Back To Top</a>
</p>
</article>
</article>
</main>
<hr>
<footer>
<p>Copyright © The Giant Taco Shop</p>
</footer>
</body>
</html>