-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
126 lines (111 loc) · 3.95 KB
/
contact.php
File metadata and controls
126 lines (111 loc) · 3.95 KB
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
<?php require "includes/header.php"; ?>
<?php require "config/config.php"; ?>
<section class="home-slider owl-carousel">
<div class="slider-item" style="background-image: url(images/bg_3.jpg);" data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text justify-content-center align-items-center">
<div class="col-md-7 col-sm-12 text-center ftco-animate">
<h1 class="mb-3 mt-5 bread">Contact Us</h1>
<p class="breadcrumbs"><span class="mr-2"><a href="index.html">Home</a></span> <span>Contact</span></p>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section contact-section">
<div class="container mt-5">
<div class="row block-9">
<div class="col-md-4 contact-info ftco-animate">
<div class="row">
<div class="col-md-12 mb-4">
<h2 class="h4">Contact Information</h2>
</div>
<div class="col-md-12 mb-3">
<p><span>Address:</span> 198 West 21th Street, Suite 721 New York NY 10016</p>
</div>
<div class="col-md-12 mb-3">
<p><span>Phone:</span> <a href="tel://1234567920">+ 1235 2355 98</a></p>
</div>
<div class="col-md-12 mb-3">
<p><span>Email:</span> <a href="mailto:info@yoursite.com">info@yoursite.com</a></p>
</div>
<div class="col-md-12 mb-3">
<p><span>Website:</span> <a href="#">yoursite.com</a></p>
</div>
</div>
</div>
<div class="col-md-1"></div>
<div class="col-md-6 ftco-animate">
<form action="#" class="contact-form">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Name">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Email">
</div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Subject">
</div>
<div class="form-group">
<textarea name="" id="" cols="30" rows="7" class="form-control" placeholder="Message"></textarea>
</div>
<div class="form-group">
<input type="submit" value="Send Message" class="btn btn-primary py-3 px-5">
</div>
</form>
</div>
</div>
</div>
</section>
<style>
.row {
display: flex;
justify-content: center;
}
.map-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.about .row .about-img {
flex: 1 1 45rem;
}
.about .row .about-img img {
width: 100%;
-webkit-mask-image: url('../img/menu/splash.svg');
-webkit-mask-size: 50%;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
}
.about .row .content {
flex: 1 1 35rem;
padding: 0 1rem;
}
.about .row .content h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
.about .row .content p {
margin-bottom: 0.8rem;
font-size: 1.3rem;
font-weight: 100;
line-height: 1.6;
}
iframe{
width:100%;
height:500px;
}
</style>
<div class="row ">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d63471.64837125736!2d106.72922222167968!3d-6.133654999999988!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2e6a1df7b1af9917%3A0x4a2871d9fd99daf9!2sDunia%20Baru%20Coffee%20Factory!5e0!3m2!1sid!2sid!4v1717077072564!5m2!1sid!2sid" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<?php require "includes/footer.php"; ?>