forked from Internet-Unexplorer/NewDesign_DCentMASS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemocontact.php
138 lines (107 loc) · 4.82 KB
/
democontact.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
<?php
/*
Author name: <Your name>;
E-mail ID: <Your E-mail ID>
Date: <dd-mm-yyyy>
*/
/////////////////////////////////////////////////////////
//include_once("variables.php");
//include_once("checkLoginStatus.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Title</title>
<?php include_once("stylesAndFont.php"); ?>
</head>
<body>
<!-- Left bar starts -->
<div class="left-bar">
<div class="image1">
<img src="images/dcentmass_png.png" class="img-fluid">
</div>
<ul>
<!-- User class="activeLink" to make links active -->
<li class="activeLink"><a href="#"><i class="material-icons">home</i><span class="menuText">Home</span></a></li>
<li><a href="#"><i class="material-icons">language</i><span class="menuText">DCent MASS</span></a></li>
<li><a href="#"><i class="material-icons">settings_applications</i><span class="menuText">Our Services</span></a></li>
<li><a href="#"><i class="material-icons">group_work</i><span class="menuText">Student Hub</span></a></li>
<li><a href="#"><i class="material-icons">library_books</i><span class="menuText">Courses</span></a></li>
<li><a href="#"><i class="material-icons">event</i><span class="menuText">Events</span></a></li>
<li><a href="#"><i class="material-icons">perm_media</i><span class="menuText">Media</span></a></li>
<!-- <li><a href="#">Forum</a></li> -->
<li><a href="#"><i class="material-icons">contacts</i><span class="menuText">Contact Us</span></a></li>
<!-- <li style="border-bottom: 2px solid #06f;"><a href="#"></a></li> -->
<!-- <li style="border-bottom: 2px solid #06f;"><a href="#">FAQs</a></li> -->
</ul>
</div>
<!-- Left bar ends -->
<!-- Mobile bar starts here -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<ul> <!-- User class="activeLink" to make links active -->
<li><a href="#">Home</a></li>
<li><a href="#">DCent MASS</a></li>
<li><a href="#">Our Services</a></li>
<li><a href="#">Student Hub</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Media</a></li>
<!-- <li><a href="#">Forum</a></li> -->
<li style="border-bottom: 2px solid #06f;"><a href="#">Contact Us</a></li>
<!-- <li style="border-bottom: 2px solid #06f;"><a href="#">FAQs</a></li> -->
</ul>
</div>
<span id="openNavID" style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
<!-- Mobile bar ends here -->
<!-- Right bar starts -->
<div class="mainContainer" id="mainContainer" style="margin-right: 0px; "> <!-- DO NOT REMOVE THIS -->
<div class="container-fluid">
<!-- MAIN CONTENT STARTS -->
<!-- WRITE MAIN CONTENT HERE -->
<div class="jumbotron jumbotron-fluid" style="margin-top: 10px; background-image: url('images/stock/Contact Us.png');
background-size: 100%;">
<div class="container">
<h1 class="display-7"><font color="white"><center>Contact Us</h1></center></font>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
<font color="orange"> <h2>Get In Touch<br> With US</h2></font>
<h5>Fill the form to get in touch with us</h5>
<form action="/action_page.php">
<label for="fname">Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Email</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="subject">Messege</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
<div class="col-md-6">
<h2>Contact US</h2>
<img src="../DCentMASS/images/maktum/64665.png" style="height: 27px; width: 27px;"/> Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<br>
<br>
<img src="../DCentMASS/images/maktum/56382-200.png" style="height: 27px; width: 27px;"/> +91 9191000000<br><br>
<img src="../DCentMASS/images/maktum/56382-200.png" style="height: 27px; width: 27px;"/> +91 9191000000
<br>
<br>
<img src="../DCentMASS/images/maktum/aiga_mail-512.png" style="height: 27px; width: 27px;"/> [email protected]
</div>
</div>
</div>
<!-- NOTE: Please keep your code clean + readable and add comments -->
<!-- MAIN CONTENT ENDS -->
</div>
</div>
<?php include_once("script.php"); ?>
</body>
</html>