-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
86 lines (70 loc) · 3.51 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
<!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>যোগাযোগ - জাবিইপা</title>
<link rel="shortcut icon" href="image/juil-logo.ico" type="image/x-icon">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<script src="https://kit.fontawesome.com/899adf5c9e.js" crossorigin="anonymous"></script>
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
<meta name="keywords" content="জাবিইপা" />
<meta name="description" content="জাহাঙ্গীরনগর বিশ্ববিদ্যালয় ইসলামি পাঠাগার" />
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="হোম - জাবিইপা">
<meta name="twitter:description" content="জাহাঙ্গীরনগর বিশ্ববিদ্যালয় ইসলামি পাঠাগার">
<meta property="og:title" content="হোম - জাবিইপা" />
<meta property="og:site_name" content="জাবিইপা" />
<meta property="og:description" content="জাহাঙ্গীরনগর বিশ্ববিদ্যালয় ইসলামি পাঠাগার" />
<meta property="og:url" content="https://www.juislamiclibrary.com/" />
<meta property="og:image" content="" />
<script type="text/javascript">
function disableselect(e) {
return false
}
function reEnable() {
return true
}
//if IE4+
document.onselectstart = new Function("return false")
document.oncontextmenu = new Function("return false")
//if NS6
if (window.sidebar) {
document.onmousedown = disableselect
document.onclick = reEnable
}
</script>
</head>
<body>
<!-- header section starts -->
<?php
include "header.php";
?>
<!-- header section ends -->
<div class="contact">
<div class="heading">
<h3>যে কোন তথ্য জানতে</h3>
</div>
</div>
<section class="contact">
<form action="contacted.php" method="post">
<h3 class="cnt">আপনার যে কোন জিজ্ঞাসা বা পরামর্শ নিম্নোক্ত ফর্মে পূরণ করে আমাদের কাছে পাঠিয়ে দিন। আমরা শীঘ্রই আপনার
সাথে যোগাযোগ করবো ইন শা আল্লাহ। </h3>
<input type="text" name="name" required placeholder="Your Name" class="box">
<input type="email" name="email" required placeholder="Your Email" class="box">
<input type="number" name="phone" required placeholder="Phone Number" class="box">
<textarea name="message" class="box" placeholder="Write your message...." id="" cols="30" rows="10"></textarea>
<input type="submit" value="send message" name="send" class="btn">
</form>
</section>
<!-- footer section starts -->
<?php
include "footer.php";
?>
<!-- footer section ends -->
</body>
</html>