-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
131 lines (81 loc) · 2.8 KB
/
contact.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
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<title>Nadeen's Hermitage Haven - Nashville, TN - 3410 Lebanon Pike Hermitage, TN 37076 - 615.873.1184</title>
<style>
.testContainer {
display: flex;
flex-direction: row;
justify-content: space-between
}
#addressHours {
}
#mapContact {
}
</style>
</head>
<body>
<div id="bigWrapper">
<header>
<h2>
Nadeen's Hermitage Haven
</h2>
<nav>
<ul class="nav-ul">
<li><a href="index.html">home</a></li>
<li><a href="menu.html">menu</a></li>
<li><a href="contact.html">contact</a></li>
<li><a href="#">jobs</a></li>
</ul>
</nav>
</header>
<main>
<div id="main-container">
<div class="testContainer">
<!-- address and hours -->
<div id="#addressHours">
<p id="address">
3410 Lebanon Pike<br />
Hermitage, TN 37076<br />
615.873.1184<br />
<a href="https://www.google.com/maps/dir//Nadeen%27s+Hermitage+Haven/data=!4m8!4m7!1m0!1m5!1m1!1s0x88646a5c838ae043:0x14644d5df4ea2dc4!2m2!1d-86.6287547!2d36.1889888" style="color: black; text-decoration: underline; font-size: 1.1em">Get directions</a><br />
</p>
<p id="hours">
<strong>Hours</strong><br />
T-R: 9am - 10am <br />
F: 9am - 11pm <br />
S: 8am - 12am <br />
Sun: 80am - 3pm <br /><br />
</p>
<p id="contact">
<form method="post" action="acknowledge.php">
<label for="name">Name:</label>
<br />
<input type="text" name="name" id="name">
<br />
<label for="email">Email:</label>
<br />
<input type="email" name="email" id="email">
<br />
<label for="comments">Comments:</label>
<br />
<textarea name="comment" id="comment"></textarea>
<br />
<input type="submit" name="send" value="Send Message">
</form>
</p>
</div>
<!-- map and contact form -->
<div id="mapContact">
<p id="map">
<img src="staticmap.jpeg" alt="map">
</p>
</div>
</div> <!-- testContainer -->
</div> <!-- main-container -->
</main>
</div> <!-- big wrapper -->
</body>
</html>