-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews_events.php
More file actions
94 lines (74 loc) · 2.59 KB
/
news_events.php
File metadata and controls
94 lines (74 loc) · 2.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>News & Events</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<style>
.main-content {
margin-top: 22px;
}
.main-content h1 {
font-family: Algerian;
}
.main-content h3 {
font-family: Algerian;
padding-left: 30px;
padding-bottom: 20px;
}
.main-content .event-img {
padding-left: 30px;
}
.main-content .event-img img {
padding-right: 16px;
}
</style>
</head>
<body>
<?php
include("header.php");
include("header2.php");
?>
<div class="row">
<div class="col-2">
<?php
include("menu.php");
?>
</div>
<div class="col-8 main-content">
<br>
<h1 align="center">News And Events</h1>
<br><br>
<h3>Canteeni Mandeer</h3>
<div class="event-img">
<img src="image/Canteeni Mandeer 1.jpg" height="250" width="400">
<img src="image/Canteeni Mandeer 2.jpg" height="250" width="400">
</div><br>
<div class="event-img">
<img src="image/Canteeni Mandeer 3.jpg" height="250" width="400">
<img src="image/Canteeni Mandeer 4.jpg" height="250" width="400">
</div><br><br>
<h3>Inter Polytechnic College Games</h3>
<div class="event-img">
<img src="image/n1.jpg" height="250" width="400">
<img src="image/n2.jpg" height="250" width="400">
</div>
<br>
<div class="event-img">
<img src="image/n3.png" height="250" width="400">
<img src="image/n4.jpg" height="250" width="400">
</div>
</div>
<div class="col-2">
<?php
include("menu_1.php");
?>
</div>
</div>
<?php
include("footer.php");
?>
</body>
</html>