forked from corn-flour/code4fun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
46 lines (45 loc) · 2.11 KB
/
contact.html
File metadata and controls
46 lines (45 loc) · 2.11 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Contact Us</title>
<link rel="stylesheet" href="css/style1.css" />
<link rel="stylesheet" type="text/css" href="css/stylecontact.css"/>
</head>
<body>
<nav>
<a class="logo" href="index.html"><img src="images/logoplaceholder.png" alt="logo"/></a>
<a href="index.html#aboutus">About us</a>
<a href="articles.html">Articles</a>
<a href="members.html">Members</a>
<a href="activities.html">Activities</a>
<a id="selected" href="contact.html">Contact us</a>
<a href="join.html">Join us</a>
</nav>
<main>
<div id="whole">
<h1>Contact Us</h1>
<hr id="decoline">
<div id="contacts">
<p class="clubname"> CodeforFun</p>
<p>Fairleigh Dickinson University</p>
<p>842 Cambie Street, Vancouver, BC.</p>
<p>Phone Number : 604-682-8112</p>
<p>Email: codeforfun@gmail.com </p>
<p><a href="https://goo.gl/maps/ovv3unvwFGA2" target="_blank">View Location </a></p>
</div>
<form id="form" action="thankyou.html">
<div><label for="fullname">Full Name:</label> <input type="text" class="inputbox" id="fullname" name="fullname"></div>
<div><label for="email">Email Address:</label> <input type="email" class="inputbox" id="email" name="email"></div>
<div><label for="phone">Phone Number:</label> <input type="text" class="inputbox" id="phone" name="phone"></div>
<div><label for="message">Message:<br></label> <Textarea name="message" class="inputbox" id="message" rows="10" cols="30"></Textarea></div>
<div id="sendbox"><input id="sendbutton" type="submit" value="Send"></div>
</form>
</div>
</main>
<footer>
<hr id="line">
To be updated
</footer>
</body>
</html>