-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
160 lines (155 loc) · 5.65 KB
/
contact.html
File metadata and controls
160 lines (155 loc) · 5.65 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Contact Us</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="styles/styles.css" />
<link rel="stylesheet" type="text/css" href="styles/contact.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.4.1/css/all.css"
integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container">
<header>
<div class="title"><div class="BCIT">BCIT</div></div>
<button class="hamburger">
<div class="hamburger-content">
<span class="hamburger-icon" tabindex="-1"> ☰ </span>
<span class="hamburger-text"> Menu </span>
</div>
</button>
<nav>
<ul class="main-nav" id="link-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="contact-section">
<div class="form-container">
<div class="row-header"><h1>CONTACT US </h1></div>
<div class="row-body">
<form action="#" name="contact">
<ul>
<li class="form-li">
<p class="left">
<label for="first_name">First name</label>
<input
type="text"
name="first_name"
placeholder="enter your first name here"
required
/>
</p>
<p class="pull-right">
<label for="last_name">Last name</label>
<input
type="text"
name="last_name"
placeholder="enter your last name here"
required
/>
</p>
</li>
<li class="form-li">
<p class="p-email">
<label for="email"
>Email </label
>
<input
type="email"
name="email"
placeholder="e.g. youremail@gmail.com"
required
/>
</p>
<p class="pull-right radio">
<input type="radio" name="student" id="current" value="current">Current Student<br>
<input type="radio" name="student" id="prospective" value="prospective"> Prospective Student<br>
</p>
<li class="form-li" id="student-number">
<p class="pull-right">
<label for="student_number">BCIT Student Number</label>
<input
type="text"
name="student_ number"
placeholder="e.g. a00111222"
pattern=^$|[aA][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]
/>
</p>
</li>
</li>
<li class="form-li"><div class="divider"></div></li>
<li class="form-li">
<label for="comments">Comments or Questions</label>
<textarea cols="46" rows="3" name="comments" required></textarea>
</li>
<li class="form-li">
<input
class="btn btn-submit"
type="submit"
value="Submit"
/>
<small>or press <strong>ENTER</strong></small>
</li>
</ul>
</form>
</div>
</div>
</section>
</main>
<footer>
<div class="row">
<div class="first column" id="logo-footer">
<img
class="bcit-logo"
src="images/logo.jpg"
alt="British Columbia Institute of Technology"
/>
</div>
<div class="second column">
<p>British Columbia Institute of Technology</p>
<p>3700 Willingdon Avenue</p>
<p>Burnaby, British Columbia</p>
<p>Canada V5G 3H2</p>
<p>Telephone: (604) 434-5734</p>
<p>Toll-free (CAN/US): 1-866-434-1610</p>
</div>
<div class="third column">
<p>Follow us!</p>
<p>
<a href="https://www.facebook.com/bcit.ca/" target="_blank"
><i class="fab fa-facebook"></i
></a>
</p>
<p>
<a
href="https://www.instagram.com/lifeatbcit/?hl=en"
target="_blank"
><i class="fab fa-instagram"></i
></a>
</p>
<p>
<a
href="https://twitter.com/bcit?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor"
target="_blank"
><i class="fab fa-twitter"></i
></a>
</p>
</div>
</div>
</footer>
</div>
<script src="scripts/show-nav.js"></script>
<script src="scripts/form.js"></script>
</body>
</html>