-
Notifications
You must be signed in to change notification settings - Fork 37
/
contactUs.php
60 lines (58 loc) · 3.06 KB
/
contactUs.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
<!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">
<title>OG Tech - Contact US</title>
<?php include "header.php"; ?>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<h1 class="page-title grid background-overlay" style="margin:1px;padding-top: 140px;padding-bottom: 140px;">Contact Us</h1>
<div class="grid" style="margin:0px 15% 0px 15%">
<div id="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3983.5993810385144!2d101.61946026521403!3d3.1994524249946354!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31cc4606671f1317%3A0x3079139b3cf9d016!2sOG%20Solutions%20Sdn.%20Bhd.!5e0!3m2!1sen!2smy!4v1646159248932!5m2!1sen!2smy" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<div id="contactdetailscontainer">
<div class="contactdetails">
<div class="iconcontainer">
<i class="medium material-icons" style="font-size: 65px;">place</i>
</div>
<p class="grey-text text-lighten-4 bold" style="margin:8px;font-size:16px">
<strong class="grey-text text-lighten-4 bold" style="font-size:22px">OG Solutions (registered name)</strong><br>
B-2-16, SD2, Dataran SD PJU9, Jalan Dataran SD 2, Bandar Sri Damansara, 52200 Kuala Lumpur.
</p>
</div>
<div class="contactdetails">
<div class="iconcontainer">
<i class="medium material-icons" style="font-size: 65px;">phone</i>
</div>
<p class="grey-text text-lighten-4 bold" style="margin:8px;font-size:22px">
<strong class="grey-text text-lighten-4 bold" style="font-size:23px">Contact Number</strong><br>
012-3456789
</p>
</div>
<div class="contactdetails">
<div class="iconcontainer">
<i class="medium material-icons" style="font-size: 65px;">email</i>
</div>
<p class="grey-text text-lighten-4 bold" style="margin:8px;font-size:16px">
<strong class="grey-text text-lighten-4 bold" style="font-size:20px">OG Solutions</strong><br>
</p>
</div>
<div class="contactdetails">
<div class="iconcontainer">
<i class="medium material-icons" style="font-size: 65px;">alarm</i>
</div>
<p class="grey-text text-lighten-4 bold" style="margin:8px;font-size:16px">
<strong class="grey-text text-lighten-4 bold" style="font-size:20px">Business Hours</strong><br>
Monday to Sunday: 11.00am to 8.00pm
</p>
</div>
</div>
</div>
<?php require "footer.php"; ?>
</body>
</html>