-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
155 lines (150 loc) · 5.46 KB
/
contact.html
File metadata and controls
155 lines (150 loc) · 5.46 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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!--Import materialize.css-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<link rel="stylesheet" href="./css/custom.css" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<nav>
<div class="nav-wrapper white">
<a href="#" class="brand brand-logo left"
><img class="image responsive-img" src="./img/nav.png" alt=""
/></a>
<a href="#" data-target="mobile-demo" class="sidenav-trigger right"
><i class="black-text material-icons">menu</i></a
>
<ul id="nav-mobile" class="black-text right hide-on-med-and-down">
<li><a href="index.html" class="black-text">Home</a></li>
<li><a href="services.html" class="black-text">Services</a></li>
<li><a href="form.html" class="black-text">Apply</a></li>
<li><a href="contact.html" class="black-text">Contact Us</a></li>
</ul>
</div>
</nav>
<ul class="sidenav" id="mobile-demo" style="max-width: 52rem;">
<i class="black-text material-icons right sidenav-close">close</i>
<br />
<br />
<br />
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="form.html">Apply</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<body>
<div class="container center">
<img class="ban responsive-img" src="./img/logo.jpeg" alt="" />
</div>
<section>
<div class="background">
<div class="container">
<div class="screen">
<div class="screen-body">
<div class="screen-body-item left">
<div class="app-title">
<span>CONTACT US</span>
</div>
<div class="app-contact">
<a
href="https://twitter.com/KROMTECH1"
style="
width: 15rem;
margin-bottom: 1rem;
background-color: #00acee;
"
class="waves-effect waves-light btn"
><i class="fa fa-twitter left"></i>Twitter</a
>
<a
href="mailto:kromatictech@gmail.com"
style="
width: 15rem;
margin-bottom: 1rem;
background-color: #b23121;
"
class="waves-effect waves-light btn"
><i class="fa fa-envelope left"></i>Gmail</a
>
<a
href="https://wa.me/2348115222468"
style="
width: 15rem;
margin-bottom: 1rem;
background-color: #25d366;
"
class="waves-effect waves-light btn"
><i class="fa fa-whatsapp left"></i>Whatsapp</a
>
<a
href="https://web.facebook.com/Kromtech-100679414997560"
style="
width: 15rem;
margin-bottom: 1rem;
background-color: #3b5998;
"
class="waves-effect waves-light btn"
><i class="fa fa-facebook left"></i>Facebook</a
>
</div>
</div>
<div class="screen-body-item">
<form action="https://formspree.io/mzbjdknl" method="POST">
<div class="app-form">
<div class="app-form-group">
<input
class="app-form-control"
name="name"
placeholder="NAME"
/>
</div>
<div class="app-form-group">
<input
class="app-form-control"
name="_replyto"
placeholder="EMAIL"
/>
</div>
<div class="app-form-group">
<input
class="app-form-control"
placeholder="CONTACT NO"
/>
</div>
<div class="app-form-group message">
<input
class="app-form-control"
name="message"
placeholder="MESSAGE"
/>
</div>
<div class="app-form-group buttons">
<button type="submit" class="app-form-button">
SEND
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!--JavaScript at end of body for optimized loading-->
<script src="https://use.fontawesome.com/7672e5925f.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script>
M.AutoInit();
</script>
</body>
</html>