-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
156 lines (129 loc) · 5.85 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
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
156
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QJCYVVK2Q0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QJCYVVK2Q0');
</script>
<title>Book Your Private Chef in Hua Hin</title>
<meta property="og:title" content="Book Your Private Chef in Hua Hin" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kinthai.in.th/contact.html" />
<meta property="og:image" content="https://kinthai.in.th/img/437001227_948184703979110_6394129053641882883_n.jpg" />
<meta property="og:description" content="Reach out to book your private chef in Hua Hin. Call, email, or connect with us via social media. We're here to provide an exceptional dining experience." />
<meta property="og:site_name" content="Kinthai" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Reach out to book your private chef in Hua Hin. Call, email, or connect with us via social media. We're here to provide an exceptional dining experience.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://kinthai.in.th/contact.html">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="./css/aos.css" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css" />
<script src="./js/jquery.min.js"></script>
<link rel="icon" href="./img/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon-16x16.png">
<link rel="manifest" href="./img/site.webmanifest">
<style>
.responsive-form {
display: flex;
flex-direction: column;
max-width: 600px;
margin: auto;
}
.form-group {
margin-bottom: 10px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input[type="text"],
.form-group select,
.form-group textarea {
width: 100%;
padding: 8px;
box-sizing: border-box;
}
@media (max-width: 600px) {
.responsive-form {
padding: 10px;
}
}
</style>
</head>
<div id="header"></div>
<script>
fetch('header.html')
.then(response => response.text())
.then(data => {
document.getElementById('header').innerHTML = data;
});
</script>
<body>
<div class="maincontent">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<article class="article text-center" data-aos="fade-up" data-aos-duration="1000" data-aos-offset="0" data-aos-delay="200">
<h1 class="display-4 text-center">Contact Kinthai for Private Chef Bookings in Hua Hin</h1>
<div class="featured-img mt-5 mb-5">
<img data-aos="fade-up" data-aos-duration="1000" data-aos-offset="0" src="./img/437001227_948184703979110_6394129053641882883_n.jpg" alt="Private Chef Service in Hua Hin" title="Private Chef Service in Hua Hin">
</div>
<h3>Why Choose Kinthai for Your Private Dining Needs in Hua Hin?</h3>
<p>Located in Hua Hin - Prachuap Khiri Khan, <a href="/">Kinthai</a> is dedicated to serving our community and nearby beach towns with exceptional private chef services. We prioritize personal meetings with our clients to meticulously plan and customize your dining experience to your preferences, ensuring an unforgettable event.</p>
<p>Email Us Directly: <b>contact [at] kinthai.in.th</b></p>
<p>Call or WhatsApp: <b>+66 099 353 0593</b></p>
<p>We look forward to hearing from you!</p>
</article>
</div>
</div>
</div>
</div>
<div id="footer"></div>
<script>
fetch('footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer').innerHTML = data;
});
</script>
<script>
$(function() {
$("#feedback_name").focus();
});
function check_feedback() {
msg = "";
if ($("#feedback_name").val() == "")
msg += "\nEnter your name.";
if ($("#feedback_contact").val() == "")
msg += "\nPhone can't be empty.";
if ($("#feedback_email").val() == "")
msg += "\nE-mail can't be empty.";
if ($("#feedback_subject").val() == "")
msg += "\nSubject can't be empty.";
if ($("#feedback_comment").val() == "")
msg += "\nComments can't be empty.";
if (msg != "") {
alert(msg);
$("#feedback_name").focus();
return false;
}
return true;
}
</script>
<script src="js/bootstrap.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="js/custom-general.js"></script>
</body>
</html>