-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
70 lines (63 loc) · 2.79 KB
/
contact.html
File metadata and controls
70 lines (63 loc) · 2.79 KB
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
<!DOCTYPE html>
<html>
<head>
<title>The Louisville Game Shop</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="css/nav.css">
<link href='https://fonts.googleapis.com/css?family=Droid+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<header class="menu">
<a class="menuImage" href="index.html"><img src="img/finallogo.jpg" alt="The Louisville Game Shop" class="menu-image"></a>
<ul class="nav">
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="directions.html">DIRECTIONS</a></li>
<li><a href="gamerclub.html">GAMER'S CLUB</a></li>
</ul>
</header>
<div class="sideBar" id="contact-info">
<h3>Hours</h3>
<div class="sidebar-hours">
<p>Monday: 12-8PM</p>
<p>Tuesday: 12-8PM</p>
<p>Wednesday: Closed</p>
<p>Thursday: 12-8PM</p>
<p>Friday: 12-8PM</p>
<p>Saturday: 12-8PM</p>
<p>Sunday: 12-8PM</p>
</div>
<div class="sidebar-info">
<p>Located at 925 Baxter Ave</p>
<p>Louisville, KY 40204</p>
<p><img src="img/phone.png" alt="phone" class="phone-image"> (502) 456-2734</p>
<p><a class="facebook-image" href="https://www.facebook.com/The-Louisville-Game-Shop-303121397321/"><img src="img/facebook.png" alt="Facebook" class="facebook-image"></a><a class="twitter-image" href="https://twitter.com/GameShopTest"><img src="img/twitter.png" alt="Twitter" class="twitter-image"></a> </p>
</div>
</div>
<div class ="contactContainer">
<div class="contactMain">
<h1>Contact</h1>
<p>The Louisville Game Shop can be contacted through the following methods:</p>
<p>Phone: (502) 456-2734</p>
<p>E-mail: Colin@thelouisvillegameshop.com</p>
</div>
<div class ="contact-form" >
<form action="contact.html" method="post">
<h1>Send us an Email!</h1>
<label for="Name">Name:</label>
<input type="text" id="Name" name="message_name">
<label for="Email">Email:</label>
<input type="email" id="Email" name="message_email">
<label for="text">Type your Message:</label>
<textarea id="text" name="message_message"></textarea>
<button type="submit" class="submit">Submit</button>
</form>
</div>
</div>
<footer class="mainFooter">
<span>©2016</span>
</footer>
</body>
</html>