-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
150 lines (132 loc) · 4.18 KB
/
contact.php
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
<?php require("libs/fetch_data.php");?>
<!DOCTYPE html>
<html lang="zxx">
<head>
<title><?php getwebname("titles"); echo"|"; gettagline("titles");?> | Contact</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link id="browser_favicon" rel="shortcut icon" href="blogadmin/images/<?php geticon("titles"); ?>">
<meta charset="utf-8" name="description" content="<?php getshortdescription("titles");?>">
<meta name="keywords" content="<?php getkeywords("titles");?>" />
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<link href="css/bootstrap.css" rel='stylesheet' type='text/css' />
<link href="css/contact.css" rel='stylesheet' type='text/css' />
<link href="css/style.css" rel='stylesheet' type='text/css' />
<link href="css/fontawesome-all.css" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800"
rel="stylesheet">
</head>
<body>
<!--Header-->
<?php include("header.php");?>
<!--//header-->
<!--/banner-->
<div class="banner-inner">
</div>
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="index.php">Home</a>
</li>
<li class="breadcrumb-item active">Contact</li>
</ol>
<!--//banner-->
<!--/main-->
<section class="main-content-w3layouts-agileits">
<h3 class="tittle">Contact Us</h3>
<p class="sub text-center">We love to discuss your idea</p>
<div class="contact-map inner-sec">
<iframe src="<?php getcontacts("titles","4");?>"
class="map" style="border:0" allowfullscreen=""></iframe>
</div>
<div class="ad-inf-sec bg-light">
<div class="container">
<div class="address row">
<div class="col-lg-4 address-grid">
<div class="row address-info">
<div class="col-md-4 address-left text-center">
<i class="far fa-map"></i>
</div>
<div class="col-md-8 address-right text-left">
<h6>Address</h6>
<p> <?php getcontacts("titles","1");?>
</p>
</div>
</div>
</div>
<div class="col-lg-4 address-grid">
<div class="row address-info">
<div class="col-md-4 address-left text-center">
<i class="far fa-envelope"></i>
</div>
<div class="col-md-8 address-right text-left">
<h6>Email</h6>
<p>
<a href="mailto:<?php getcontacts("titles","2");?>"><?php getcontacts("titles","2");?></a></p>
</div>
</div>
</div>
<div class="col-lg-4 address-grid">
<div class="row address-info">
<div class="col-md-4 address-left text-center">
<i class="fas fa-mobile-alt"></i>
</div>
<div class="col-md-8 address-right text-left">
<h6>Phone</h6>
<p><?php getcontacts("titles","3");?></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--//main-->
<!--footer-->
<?php include("footer.php");?>
<!---->
<!-- js -->
<script src="js/jquery-2.2.3.min.js"></script>
<!-- //js -->
<!--/ start-smoth-scrolling -->
<script src="js/move-top.js"></script>
<script src="js/easing.js"></script>
<script>
jQuery(document).ready(function ($) {
$(".scroll").click(function (event) {
event.preventDefault();
$('html,body').animate({
scrollTop: $(this.hash).offset().top
}, 900);
});
});
</script>
<!--// end-smoth-scrolling -->
<script>
$(document).ready(function () {
/*
var defaults = {
containerID: 'toTop', // fading element id
containerHoverID: 'toTopHover', // fading element hover id
scrollSpeed: 1200,
easingType: 'linear'
};
*/
$().UItoTop({
easingType: 'easeOutQuart'
});
});
</script>
<a href="#home" class="scroll" id="toTop" style="display: block;">
<span id="toTopHover" style="opacity: 1;"> </span>
</a>
<!-- //Custom-JavaScript-File-Links -->
<script src="js/bootstrap.js"></script>
</body>
</html>