-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
73 lines (69 loc) · 3.41 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/style.css">
<title> Contact </title>
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar">
<!-- LOGO -->
<div class="logo"> LOGO </div>
<!-- NAVIGATION MENU -->
<div class="nav-links">
<!-- USING CHECKBOX HACK -->
<input type="checkbox" id="checkbox_toggle" />
<label for="checkbox_toggle" class="hamburger">☰</label>
<!-- NAVIGATION MENUS -->
<div class="menu">
<a href="index.php">Home</a>
<a href="vision.php">Vision</a>
<a href="faculty.php">Faculty</a>
<a class="active" href="contact.php">Contact</a>
<a href="./result/index.php">SRMS</a>
<a href="./admin/index.php">Admin</a>
</div>
</div>
</nav>
<div class="page_header">
<h1> UNIVERSITY OF XYZ </h1>
</div>
<div class="pageTitle">
<h2> Contact </h2>
</div>
<p style="margin-top: 50px; text-align: center;">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. <br>
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, <br>
when an unknown printer took a galley of type and scrambled it to make a type <br>
specimen book. It has survived not only five centuries, but also the leap into <br>
electronic typesetting, remaining essentially unchanged. It was popularised in <br>
the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, <br>
and more recently with desktop publishing software like Aldus PageMaker including <br>
versions of Lorem Ipsum. <br>
</p>
<p style="margin-top: 50px; text-align: center;">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. <br>
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, <br>
when an unknown printer took a galley of type and scrambled it to make a type <br>
specimen book. It has survived not only five centuries, but also the leap into <br>
electronic typesetting, remaining essentially unchanged. It was popularised in <br>
the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, <br>
and more recently with desktop publishing software like Aldus PageMaker including <br>
versions of Lorem Ipsum. <br>
</p>
<p style="margin-top: 50px; text-align: center;">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. <br>
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, <br>
when an unknown printer took a galley of type and scrambled it to make a type <br>
specimen book. It has survived not only five centuries, but also the leap into <br>
electronic typesetting, remaining essentially unchanged. It was popularised in <br>
the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, <br>
and more recently with desktop publishing software like Aldus PageMaker including <br>
versions of Lorem Ipsum. <br>
</p>
<footer>
<p> <a href="mailto:kadiyala.mani15@gmail.com"> © Manish Chandra Kadiyala 2022 </a> </p>
</footer>
</body>
</html>