-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
executable file
·121 lines (114 loc) · 4.78 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="images/favicon.ico" rel="icon" />
<link rel="stylesheet" href="css/style.css" />
<title>i99 ltd</title>
</head>
<body>
<header>
<div class="logo"><img src="images/toplogo_i99.png" alt="i99 Logo"> i99 Ltd</div>
<div class="menu"></div>
<div class="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<!--<li><a href="about.html">About Us</a></li>-->
<li><a href="contact.html">Contact Us</a></li>
</ul>
<div class="social-bar">
<ul>
<li><a href="https://facebook.com"><img src="images/facebook.png" target="_blank"alt="" title="Talk about us on FaceBook"></a></li>
<li><a href="https://Instagram.com"><img src="images/instagram.png" target="_blank"alt="" title="Talk about us on Instagram"></a></li>
<li><a href="https://WallaceAndWang.com"><img src="images/powered-by-wandw-black.png" target="_blank"alt="Wallace and Wang logo" title="We're Powered by Wallace & Wang Ltd"></a></li>
</ul>
<a href="mailto:sales@i99.co.uk" class="email-icon"><img src="images/email.png" alt="" title="Send us an Email"></a>
</div>
</header>
<section>
<div class="title">
<h1>Contact us</h1>
<p>
We're operating mostly in <b>London & the UK</b> but
as is a theme with us, we're pretty flexible, so please, <b>contact us</b>
for more information on what we do, where we can work or how we can help you. <br><br>
If you just need a quote, then please provide as much detail as possible and
we'll get back to you as soon as we can.
</p>
</div>
<div class="contact">
<div class="contact-form">
<form action="https://formsubmit.co/sales@i99.co.uk" method="POST">
<div class="row">
<div class="input50">
<input type="text" placeholder="First Name" name="first name"/>
</div>
<div class="input50">
<input type="text" placeholder="Last Name" name="last name"/>
</div>
</div>
<div class="row">
<div class="input50">
<input type="text" placeholder="Email" name="from email"/>
</div>
<div class="input50">
<input type="text" placeholder="Subject" name="subject"/>
</div>
</div>
<div class="row">
<div class="input100">
<textarea placeholder="Message" name="textarea"></textarea>
</div>
</div>
<div class="row">
<div class="input100">
<input type="submit" value="Send" />
</div>
</div>
</form>
</div>
<div class="contact-info">
<div class="info-box">
<img src="images/address.png" class="contact-icon" alt="" />
<div class="details">
<h4>Where we operate from:</h4>
<p>London, UK</p>
</div>
</div>
<div class="info-box">
<img src="images/email.png" class="contact-icon" alt="" />
<div class="details">
<h4>Email</h4>
<a href="mailto:sales@i99.co.uk">sales@i99.co.uk</a>
</div>
</div>
<div class="info-box">
<img src="images/call.png" class="contact-icon" alt="" />
<div class="details">
<h4>Call</h4>
<a href="tel:+44xxxxxxx">+44-(0)-xxxxxxxx</a>
</div>
</div>
</div>
</div>
</section>
<!-- <footer>
<div class="footer-content">
<p>Content is © <b>i99 Ltd</b><br>
Website powered by <img src="images/powered-by-wandw.png" alt="Wallace and Wang logo"> <a href="http://www.wallaceandwang.com/" target="_blank" title="See how Wallace and Wang Ltd can help your business!">Wallace and Wang Ltd</a></p>
</div>
</footer> -->
<script src="js/style.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<!--<script async src="https://www.googletagmanager.com/gtag/js?id=G-BSL354K9CS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BSL354K9CS');
</script> NEED TAG FROM ALBERT -->
</body>
</html>