-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (97 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>lots of tacos</title>
<meta charset="UTF-8">
<meta name="author" content="Muzammil Saifi">
<meta name="discription" content="main page of the little taco shop website">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<h1>Welcome To The Little Taco Shop</h1>
<nav aria-label="primary-navigation">
<ul>
<li><a href=#about>About LTS</a></li>
<li><a href=#menu>Our Menu</a></li>
<li><a href="contact.html">Contact Info</a></li>
<li><a href="storetimings.html">Store hours</a></li>
</ul>
</nav>
<figure>
<img src="img/taco1.jpg" alt='taco image failed to load :(' title="tacos with a drink" width="300" height="200"/>
<figcaption>Tacos with a cold drink</figcaption>
</figure>
</header>
<hr>
<main>
<article id="about">
<h2>About <abbr title="Little Taco Shop">LTS</abbr></h2>
<p>
We are just a small business that just got started in the town. Hopefully we add our own flavour in this colorful town and share our <strong>love of tacos 🌮🌮🌮</strong>.Thanks for reading
</p>
<h3>Taco Trivia</h3>
<aside>
<details>
<summary>Did You Know There Is An Indian Variation of Taco?</summary>
<p>What started in the late 1800s as sustenance concocted from government rations of lard, flour, salt and baking powder later became a staple in American Indian homes and at pow wows.
</p>
</details>
</aside>
</article>
<hr>
<article id="menu">
<h2>Menu</h2>
<table>
<tr>
<th colspan="3" scope="row">Our Tacos</th>
</tr>
<tr>
<th scope="col">Name</th>
<th scope="col">Qty</th>
<th scope="col">Price</th>
</tr>
<tr>
<th rowspan="3" 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.50</td>
</tr>
<tr>
<th rowspan="3" scope="row">Soft</th>
<td>1</td>
<td>$2.50</td>
</tr>
<tr>
<td>2</td>
<td>$3.00</td>
</tr>
<tr>
<td>3</td>
<td>$4.50</td>
</tr>
<tr>
<td colspan="3">Chips & Salsa $2</td>
</tr>
</table>
<p>
<a href=#>Back to Top</a>
</p>
</article>
</main>
<hr>
<footer>
<p>
Copyright© Little Tacos
</p>
</footer>
</body>
</html>