-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
153 lines (138 loc) · 4.41 KB
/
contact.php
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
<?php $page = ''; ?>
<?php
//include header.php
include_once('includes/header.php');
?>
<div id="content" class="container">
<h2>Contact us</h2>
<div class="divider"></div>
<div class="row">
<div id="contact-us" class="span16">
<div class="row" id="services">
<div class="span7">
<h4>To reach our main Departments</h4>
<h5>Call us</h5><br>
<ul>
<li>Sales phone: 1-877-901-0023</li>
<li>Tech support phone: 1-866-837-0777</li>
<li>Fax: 1-866-383-1663</li>
</ul>
<h5>Email</h5> <br>
<ul>
<li>General Informations: [email protected]</li>
<li>Sales: [email protected]</li>
<li>Marketing:[email protected]</li>
<li>Accounting: [email protected]</li>
<li>Processing: [email protected]</li>
<li>Support: [email protected]</li>
</ul>
<h5>Ontario</h5> <br>
<ul>
<li><span>Mark Convery</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li>
<br>
<li><span>Tina Cuffaro</span><br>
Phone: 1-866-837-0777<br>
Fax: 1-866-383-1663<br>
e-mail: [email protected]
</li>
<br>
<li><span>Irwin Wexelman</span><br>
Phone: 1-866-837-0777<br>
Fax: 1-866-383-1663<br>
e-mail: [email protected]
</li>
</ul>
<h5>British Columbia & Alberta</h5> <br>
<ul>
<li><span>Melanie Moukas</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li> <br>
<li><span>Irwin Wexelman</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li>
</ul>
<h5>Quebec</h5><br>
<ul>
<li><span>Irwin Wexelman</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li><br>
<li><span>Jean Gratton</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li> <br>
<li><span>Melanie Moukas</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li> <br>
<li><span>Normand Rivard</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li> <br>
</ul>
</div>
<div id="contact-form" class="span4">
<h4>Contact us</h4>
<form name="contactform" method="post" action="contact_script.php">
<input name="name" placeholder="name" required="required" class="contact_txtbox span5" maxlength="30" size="30">
<input name="email" placeholder="email" required="required" class="contact_txtbox span5" maxlength="30" size="30">
<input name="pnumber" placeholder="phone number" required="required" class="contact_txtbox span5" maxlength="30" size="30">
<textarea name="message" placeholder="message" required="required" class="contact_txt span5"></textarea>
<input type="submit" value="submit" class="btn primary contact_button">
</form>
<br>
<h5>New York</h5><br>
<ul>
<li><span>Melanie Moukas</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li> <br>
</ul>
<h5>Florida</h5><br>
<ul>
<li><span>Tina</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li> <br>
<li><span>Karla M. Acuna</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li> <br>
<li><span>Alejandro Muñiz</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li> <br>
</ul>
<h5>California</h5><br>
<ul>
<li><span>Irwin Wexelman</span><br>
Phone: 1-866-837-0777 <br>
Fax: 1-866-383-1663 <br>
e-mail: [email protected]
</li> <br>
</ul>
</div>
</div>
</div>
</div>
</div>
<?php
//include footer.php
include_once('includes/footer.php');
?>