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
|
<?php require_once ('webadmin/basic_info.php'); ?>
<!DOCTYPE html> <html dir="ltr" lang="en-US"> <head> <?php require_once("html_head.php") ?> </head>
<body>
<?php require_once("google_analysis.php"); ?>
<?php require_once("html_header.php") ?>
<section id="content" class="contact_us">
<div class="banner"> <img src="images/banner_08.jpg"/>
<div style="position: relative"> <img class="banner_overlay" src="images/slide_bottom_overlay.png"/> </div>
</div>
<div class="container"> <div style="padding-top: 20px;"> <table> <?php for($i = 1; $i <= 3; $i++){ ?> <tr> <?php for($k = 1; $k <= 3; $k++){ if($k == 3){ $padding_right = ""; }else{ $padding_right = "padding-right: 50px;"; } ?> <td style="<?=$padding_right?> width: 390px; padding-bottom: 40px;"> <span style="color: #666666;">Hong Kong Office</span> Room 2301, Futura Plaza,<br> 111-113 How Ming Street, Kwun Tong, Kowloon<br><br><br>
<div> <img src="images/icon_phone.jpg"/> <span class="vt">(852) 2331 8775</span> </div>
<div> <img src="images/icon_fax.jpg"/> <span class="vt">(852) 2331 8609</span> </div>
<div> <img src="images/icon_email.jpg"/> <span class="vt">service@alliancealliance.com</span> </div>
<div> <img src="images/icon_website.jpg"/> <span class="vt">www.alliancealliance.com</span> </div>
<p>Click <a href="#" style="text-decoration: underline; font-weight: bold; color: #10218B;">here</a> to view google map</p>
</td> <?php } ?> </tr> <?php } ?> </table>
<div style="border-top: 1px solid #c3c3c3; padding-top: 40px;"></div>
<div> <div class="head_title">CONTACT US</div>
<div> <p>Please enter your details below to get in touch. Fields marked with * are required.</p> </div>
<div> <select name="training_course_id"> <option value="1">test</option> </select>
<p class="required">Name </p> <input type="text" name="user_name" style="width: 100%;">
<p class="required">Tel </p> <input type="text" name="user_tel" style="width: 100%;">
<p class="required">E-mail </p> <input type="text" name="user_email" style="width: 100%;">
<p class="required">Message </p> <textarea name="content" style="width: 100%; height: 150px;"></textarea>
<br><br> <div class="button inline_block" style="color: #ffffff;">Submit</div> <div class="button inline_block" style="color: #ffffff; margin-left: 10px;">Reset</div> </div> </div> </div> </div> </section>
<?php require_once("html_footer.php"); ?>
</body> </html>
|