-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
89 lines (80 loc) · 3.54 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact Us</title>
<link href="css/style.css" rel="stylesheet"><link rel="icon" href="favicon.png">
</head>
<body>
<nav data-onPage="contact">
<div>
<a href="index.html"><img class="logo" src="res/logo-color.svg"></a>
<img class="close togglemenubutton" src="res/close.svg">
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="spaces.html">Spaces</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<section class="dimpage"></section>
<section class="mobNavBar">
<a href="index.html"><img class="logo" src="res/logo-white.svg"></a>
<img class="menu togglemenubutton" src="res/menu-white.svg">
</section>
<section id="contact" class="content">
<header>
<img class="background" src="res/contact_bkg.jpg">
<div class="overlay"></div>
<h1>Contact Us</h1>
</header>
<section class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3231.718389743517!2d-79.04910744920588!3d35.90491218004527!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89acc2d2cb17aaeb%3A0xb33bf0976497e0e0!2sUniversity+of+North+Carolina+at+Chapel+Hill!5e0!3m2!1sen!2sus!4v1497827878586" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
<ul>
<li class="icon"><img src="res/pin.svg"></li
><li class="info">
<h3>UNC Office of Entrepreneurship</h3>
<p>450 Ridge Rd #1213, Chapel Hill, NC 27599</p>
<p>1789management@gmail.com | (919) 962 5401</p>
</li>
</ul>
<a target="_blank" href="https://goo.gl/maps/tqFTxY3mKuq">Get Directions <img src="res/arrow.svg"></a>
</section>
<section class="form">
<img class="mail" src="res/email.svg">
<h2>Drop us a Message</h2>
<form id="subscribe" action="send.php" method="post">
<label for="name">Name:</label>
<input id="name" type="text" name="name">
<label for="email">Email:</label>
<input id="email" type="email" name="email">
<label for="message">Message:</label>
<textarea id="message" type="message" name="message"></textarea>
<div id="send" type="submit">SEND</div>
</form>
</section>
</section>
<footer><div>
<a href="index.html"><img class="logo" src="res/logo-white.svg"></a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="spaces.html">Spaces</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<p>450 Ridge Rd #1213, Chapel Hill, NC 27599</p>
<p>1789management@gmail.com</p>
<p>(919) 962-5401</p>
<span class="copyright">Copyright © 2017 Jim Kitchen</span><br>
<span>Developed by Linker Logic Technologies</span>
</div></footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/nav.js"></script>
</body>
</html>