-
Notifications
You must be signed in to change notification settings - Fork 1
/
contactUs.html
158 lines (142 loc) · 5.06 KB
/
contactUs.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
157
158
<!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>General Help | KindMeal.my</title>
<link rel="icon" type="image/png" href="https://i.ibb.co/LZpBhMB/unnamed-removebg-preview.png">
<link rel="stylesheet" href="styles/navbar.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/help.css">
</head>
<style>
#input-box {
height: auto;
width: 60%;
margin-left: 100px;
}
#input-box>div {
width: 25%;
/* border: 1px solid red; */
display: inline-block;
color: #444444;
font-size: 20px;
}
#input-box>input,
select {
width: 75%;
height: 40px;
margin-bottom: 20px;
border-radius: 5px;
border: 1px solid rgb(200, 199, 199);
font-size: 18px;
padding-left: 10px;
}
#msg-box {
width: 80%;
height: auto;
margin-left: 100px;
}
#msg-box>div {
width: 19%;
display: inline-block;
color: #444444;
font-size: 20px;
vertical-align: top;
}
#msg-box>textarea {
height: 300px;
width: 80%;
border-radius: 5px;
border: 1px solid rgb(200, 199, 199);
padding: 10px;
font-size: 20px;
}
button {
background-color: #f53838;
color: #ffffff;
font-weight: bold;
padding: 12px 45px;
border: none;
font-size: 20px;
border-radius: 10px;
margin-top: 100px;
margin-left: 35%;
}
</style>
<body>
<div id="navbar"> </div>
<div id="container">
<div id="child-1">
<div class="child-1-inner">
<img src="https://www.kindmeal.my/images/join_normal.png" alt="">
<a href="help.html">General Help</a>
</div>
<div class="child-1-inner">
<img src="https://www.kindmeal.my/images/join_shop.png" alt="">
<a href="">Merchant Help</a>
</div>
<div class="child-1-inner">
<img src="https://www.kindmeal.my/images/icon-megaphone.png" alt="">
<a href="">Advertising</a>
</div>
<div class="child-1-inner">
<img src="https://www.kindmeal.my/images/about_us.png" alt="">
<a href="AboutKindMeal.html">About KindMeal</a>
</div>
<div class="child-1-inner">
<img src="https://www.kindmeal.my/images/about_hero.png" alt="">
<a href="">SuperHero Guide</a>
</div>
<div class="child-1-inner">
<img src="https://www.kindmeal.my/images/contact.png" alt="">
<a href="contactUs.html">Contact Us</a>
</div>
</div>
<div id="child-2" style="height:900px;">
<div id="child-2-inner-1">
<div id="child-2-inner-1-heading" style="text-align:center;">Contact KindMeal.my</div>
<div class="child-2-inner-2-para" style="font-size:14px;">Do you have any questions, suggestions or
require assistance? Please
tell us more about it. We'd love to hear from you!</div>
</div>
<div id="input-box">
<div>Name</div><input type="text" id="name">
<div>Email</div><input type="text" id="Email">
<div>Phone</div><input type="text" id="phone">
<div>Topic</div><select name="" id="topic">
<option value="">-----[Select Topics]-----</option>
<option value="">General Enquiry</option>
<option value="">Account Issues</option>
<option value="">Advertising</option>
<option value="">Ambassador Program</option>
<option value="">Bug Report</option>
<option value="">Contest</option>
<option value="">Feedback And Suggestion</option>
<option value="">Free Meal</option>
<option value="">Blogger</option>
<option value="">Mobile App</option>
<option value="">Vacancy</option>
<option value="">Other</option>
</select>
</div>
<div id="msg-box">
<div>Message</div><textarea id="msg" cols="30" rows="10"></textarea>
</div>
<button onclick="submit()">Send Message</button>
</div>
</div>
<div id="footer">
</div>
</body>
</html>
<script type="module">
let navbar = document.getElementById('navbar')
import DishplayNavbar from './components/navbar.js'
navbar.innerHTML = DishplayNavbar()
let footer = document.getElementById('footer')
import dishplayFooter from './components/footer.js'
footer.innerHTML = dishplayFooter()
</script>
<script src="scripts/contactUs.js"></script>