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
|
<!DOCTYPE html> <html lang="en">
<head> <title>FLORA HOUSE</title> <!-- css --> <?php include 'inc/headlinks.php';?> <meta name="keywords" content="FLORA HOUSE"> <meta name="description" content="Green is More Than a Colour"> <!-- js --> <?php include 'inc/link-js.php';?> </head>
<body>
<!-- header -->
<div class="subPageMenu">
<?php include 'inc/navbar.php';?> </div> <!-- end of header--> <section class="garyBg mainWarp">
<div class="row"> <div class="col-lg-6 mb-4"> <p class="small lightGreenFont text-uppercase">Contact Us</p> <p class="biggerester Roman"><span class="greenFont">Tel:</span> <span class="lightGreenFont">(852) 3690 0000</span> </p> <p class="biggerester Roman"><span class="greenFont">WhatsApp:</span> <span class="lightGreenFont">(852) 6908 7180</span> </p> <form> <div class="row"> <div class="col-md-6"> <div class="form-group fullWidth"> <input type="text" class="form-control" id="FirstName" aria-describedby="FirstName" placeholder="First name(optional)"> </div> </div> <div class="col-md-6"> <div class="form-group fullWidth"> <input type="text" class="form-control" id="LastName" aria-describedby="LastName" placeholder="Last name"> </div> </div> <div class="col-md-12"> <div class="form-group fullWidth"> <input type="text" class="form-control" id="Company" aria-describedby="Company" placeholder="Company(optional)">
</div> <div class="form-group fullWidth"> <input type="text" class="form-control" id="Address" aria-describedby="Address" placeholder="Address">
</div> </div> <div class="col-md-12"> <p class="">Messages</p> <div class="form-group"> <textarea class="form-control" id="Note" placeholder="Type here" rows="3"></textarea> </div> </div> <div class="col-md-12 pt-4 mb-4"> <button class="yellowBtn noBorder continueToShipBtn" type="text">Send</button>
</div> </div> </form> </div> <div class="col-lg-6"> <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7382.279718218753!2d114.23327632660164!3d22.310549766965362!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404015816e8f185%3A0x764377338f38ca60!2sLam%20Tin!5e0!3m2!1sen!2shk!4v1608195716405!5m2!1sen!2shk" width="100%" height="100%" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe> </div>
</div>
</section>
<?php include 'inc/subscribe.php';?>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer.php';?>
</body>
</html>
|