-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmp_events.html
82 lines (66 loc) · 1.9 KB
/
mp_events.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
<!DOCTYPE html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Review Assignment
Mobile Panini Events Calendar
Author: Brandon Berney
Date: January 17 2019
Filename: mp_events.html
-->
<meta charset="utf-8" />
<title>Mobile Panini Events Calendar</title>
<link href="mp_base.css" rel="stylesheet" />
<link href="mp_layout.css" rel="stylesheet" />
</head>
<body>
<header>
<img src="mp_logo.png" alt="Mobile Panini" />
<nav>
<ul>
<li><a href="mp_index.html">Home</a></li>
<li><a href="mp_menu.html">Menu</a></li>
<li><a href="mp_events.html">Events</a></li>
<li><a href="mp_catering.html">Catering</a></li>
</ul>
</nav>
</header>
<article>
Calendar
<h1>Where Are We This Week?</h1>
<div>
<h1>Monday 9/14</h1><br />
247 Park Rd., Charlotte (11 a.m. - 6 p.m.)
</div>
<div>
<h1>Tuesday 9/15</h1><br />
13 North Dr., Cornelius (11 a.m. - 9 p.m.)
</div>
<div>
<h1>Wednesday 9/16</h1><br />
216 Hawkins St., Charlotte (11 a.m. - 9 p.m.)
</div>
<div>
<h1>Thursday 9/17</h1><br />
14 Plaza Rd., Charlotte (11 a.m. - 6 p.m.)
</div>
<div>
<h1>Friday 9/18</h1><br />
141 Camden St., Charlotte (11 a.m. - 10 p.m.)
</div>
<div>
<h1>Saturday 9/19</h1><br />
801 York Rd., Charlotte (10 a.m. - 9 p.m.)
</div>
<div>
<h1>Sunday 9/20</h1><br />
159 States Ave., Huntersville (10 a.m. - 6 p.m.)
</div>
</article>
<footer>
<p>Mobile Panini - 31 West Avenue, Charlotte NC 28204 - 704-555-2188</p>
</footer>
</body>
</html>