-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.php
90 lines (85 loc) · 5.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content />
<meta name="author" content />
<title>ProfsPortail - Contact</title>
<!-- Favicon-->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<!-- Bootstrap icons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body class="d-flex flex-column">
<main class="flex-shrink-0">
<?php include_once('includes/header.php');?>
<!-- Page content-->
<section class="py-5">
<div class="container px-5">
<!-- Contact form-->
<div class="bg-light rounded-3 py-5 px-4 px-md-5 mb-5">
<div class="text-center mb-5">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-envelope"></i></div>
<h1 class="fw-bolder">Get in touch</h1>
<p class="lead fw-normal text-muted mb-0">We'd love to hear from you</p>
</div>
<!-- Contact cards-->
<div class="row gx-5 row-cols-2 row-cols-lg-4 py-5">
<div class="col">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-chat-dots"></i></div>
<div class="h5 mb-2">Chat with us</div>
<p class="text-muted mb-0">Chat live with one of our support specialists.</p>
</div>
<div class="col">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-telephone"></i></div>
<div class="h5">Call us</div>
<p class="text-muted mb-0">Call us during normal business hours at +918007488484.</p>
</div>
<div class="col">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-envelope"></i></div>
<div class="h5">Mail us</div>
<p class="text-muted mb-0">Mail us at <a href="mailto:keshabkjha11@gmail.com">keshabkjha11@gmail.com</a>.</p>
</div>
<div class="col">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-instagram"></i></div>
<div class="h5">Follow us on Instagram</div>
<p class="text-muted mb-0">Follow us on <a href="https://www.instagram.com/keshabkjha/" target="_blank">Instagram</a>.</p>
</div>
<div class="col">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-linkedin"></i></div>
<div class="h5">Connect with us on LinkedIn</div>
<p class="text-muted mb-0">Connect with us on <a href="https://www.linkedin.com/in/keshabkjha" target="_blank">LinkedIn</a>.</p>
</div>
<div class="col">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-github"></i></div>
<div class="h5">Our Works</div>
<p class="text-muted mb-0">Check out our other works on <a href="https://github.com/Keshabkjha" target="_blank">GitHub</a>.</p>
</div>
<div class="col">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-twitter"></i></div>
<div class="h5">Follow us on Twitter</div>
<p class="text-muted mb-0">Follow us on <a href="https://twitter.com/Keshabkjha" target="_blank">Twitter</a>.</p>
</div>
<div class="col">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-person-circle"></i></div>
<div class="h5">Contact Developer</div>
<p class="text-muted mb-0"> Check out developer's links on <a href="https://linktr.ee/Keshabkjha" target="_blank">Linktree</a>.</p>
</div>
</div>
</div>
</section>
</main>
<!-- Footer-->
<?php include_once('includes/footer.php');?>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
<script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script>
</body>
</html>