-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (116 loc) · 3.35 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
<!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="Yevnehii Holubovych" />
<meta
name="description"
content="The official website for The Little Taco Shop"
/>
<title>The Little Taco Shop</title>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/main.js" defer></script>
</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="hours.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="img/tacos_and_drink_1000x667.png"
alt="Tacos and a Drink"
title="We love tacos!"
width="1000"
height="667"
/>
<figcaption class="offscreen">Tacos and a Drink</figcaption>
</figure>
</section>
<hr />
<main class="main">
<hr />
<article id="menu" class="main__article menu">
<h2 class="menu__h2">Our Menu</h2>
<table class="menu__container">
<caption class="offscreen">
Our Tacos
</caption>
<thead>
<tr>
<th class="menu__header" scope="col">Tacos</th>
<th class="menu__header" scope="col">Quantity</th>
<th class="menu__header" scope="col">Price</th>
</tr>
</thead>
<tbody>
<tr>
<th class="menu__item menu__cr" scope="row" rowspan="3">
Crunchy
</th>
<td class="menu__item">1</td>
<td class="menu__item">$1.50</td>
</tr>
<tr>
<td class="menu__item">2</td>
<td class="menu__item">$2.50</td>
</tr>
<tr>
<td class="menu__item">3</td>
<td class="menu__item">$3.25</td>
</tr>
<tr>
<th class="menu__item menu__sf" scope="row" rowspan="3">Soft</th>
<td class="menu__item">1</td>
<td class="menu__item">$2.00</td>
</tr>
<tr>
<td class="menu__item">2</td>
<td class="menu__item">$3.50</td>
</tr>
<tr>
<td class="menu__item">3</td>
<td class="menu__item">$4.50</td>
</tr>
</tbody>
<tfoot>
<tr>
<td class="menu__item menu__cs" colspan="3">
Chips & Salsa $2
</td>
</tr>
</tfoot>
</table>
<p class="center">
<a href="#">Back To Top</a>
</p>
</article>
</main>
<hr />
<footer class="footer">
<p>
<span class="nowrap">Copyright © <time id="year"></time></span>
<span class="nowrap">Little Taco Shop</span>
</p>
</footer>
</body>
</html>