-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcontact.html
More file actions
137 lines (99 loc) · 3.47 KB
/
Copy pathcontact.html
File metadata and controls
137 lines (99 loc) · 3.47 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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Lato:400,900" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="pagewithoutslides.css">
<title>OMMIC</title>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="pictures/favicon.png">
<link href="https://cdn-images.mailchimp.com/embedcode/classic-10_7.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup {
background: #fff;
clear: left;
font: 14px Helvetica, Arial, sans-serif;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="navbarcolour">
<div class="navbar">
<div class="centerimg">
<img src="pictures/Branding/logoblack.png" class="logoheader" >
</div>
<center>
<a href="index.html">Home</a>
<a href="news.html">News</a>
<a href="2018.html">OMMIC 2018</a>
<!--<a href="2017.html">OMMIC 2017</a>-->
<a href="competitions.html">Competitions</a>
<a href="2016.html">Past Events</a>
<a href="sponsorus.html">Sponsor Us</a>
<a href="contact.html">Contact</a>
<!-- <a href="FRindex.html">FR</a> -->
</center>
</div>
</div>
<div style="max-width: 80%; margin-left:auto;margin-right:auto;">
<article>
<h1>Contact Us</h1>
<hr />
<center>
<div class="contactpage">
<h3>Mailing Address</h3>
<p>
Faculty of Engineering Deans Office<br /> Attn: OMMIC Organizing Committee<br /> 161 Louis Pasture Private<br /> Ottawa, Ontario, K1N 6N5
</div>
<div class="contactpage contact">
<h3 >General Inquiries</h3>
<p>
Zaineb Al-Faesly<br /> Director of Operations<br />
<a href="mailto:speakers@ommic.ca?Subject=General%20inquiry" target="_top">speakers@ommic.ca</a>
</div>
<div class="contactpage contact" style="margin-bottom:20px">
<h3>Sponsorship Inquiries</h3>
<p>
Justine Boudreau<br /> Director of Finance<br />
<a href="mailto:finance@ommic.ca?Subject=Sponsorship%20inquiry" target="_top">finance@ommic.ca</a>
</div>
<div class="contactpage contact" style="margin-bottom:20px">
<h3>Marketing Inquiries</h3>
Mihir Mistry <br /> Director of Marketing<br />
<a href="mailto:marketing@ommic.ca?Subject=Sponsorship%20inquiry" target="_top">marketing@ommic.ca</a>
</div>
<div class="contactpage contact" style="margin-bottom:20px">
<h3>General Inquiries</h3>
Mohamed Elsageyer <br />Organizer<br />
<a href="mailto:info@ommic.ca?Subject=Sponsorship%20inquiry" target="_top">info@ommic.ca</a>
</div>
</center>
<br /><br /><br /><br /><br />
</article>
</div>
<footer>
<a href="https://www.facebook.com/OMMIConference/?hc_ref=ARQKxPGRhiPQ1ZiIPno01NPJrDnJQR-cfzyEFn9eDZWD_EigD40nkXa1DCXXiLaGZsc&fref=nf" class="fa fa-facebook"></a>
<a href="https://twitter.com/ommiconference" class="fa fa-twitter"></a>
<a href="privacy.html" class="footer">Privacy Policy</a>
<a href="terms.html" class="footer">Terms of Service</a>
</footer>
</body>
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {
myIndex = 1
}
x[myIndex - 1].style.display = "block";
setTimeout(carousel, 6000); // Change image every 6 seconds
}
</script>
</html>