-
Notifications
You must be signed in to change notification settings - Fork 0
/
students_alumni_cell.php
executable file
·101 lines (68 loc) · 2.09 KB
/
students_alumni_cell.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
<html>
<head>
<title>12th Alumni Meet</title>
<?php include("mainStyle.php");?>
<style type="text/css">
.font-type{
left:120px;
right:120px;
}
#p1 {
color: white;
}
#fnot {
font-family: exomedium;
color: white;
}
<?php include("css/body_customise.css"); ?>
@font-face {
font-family: 'voll';
src: url('fonts/vollkorn-regular-webfont.eot');
src: url('fonts/vollkorn-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/vollkorn-regular-webfont.woff') format('woff'),
url('fonts/vollkorn-regular-webfont.ttf') format('truetype'),
url('fonts/vollkorn-regular-webfont.svg#vollkornregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exomedium';
src: url('fonts/exo-medium-webfont.eot');
src: url('fonts/exo-medium-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/exo-medium-webfont.woff') format('woff'),
url('fonts/exo-medium-webfont.ttf') format('truetype'),
url('fonts/exo-medium-webfont.svg#exomedium') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exoregular';
src: url('exo-regular-webfont.eot');
src: url('exo-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('exo-regular-webfont.woff') format('woff'),
url('exo-regular-webfont.ttf') format('truetype'),
url('exo-regular-webfont.svg#exoregular') format('svg');
font-weight: normal;
font-style: normal;
}
.col-md-6{
text-align: center;
}
</style>
</head>
<body class="container">
<div class="container">
<?php //include("menubar.php");
include("top_home.php"); ?>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8" id="fnot">
<?php include("sac_content.php"); ?>
</div>
<div class="col-md-2" style="background:; text-align:center;">
<?php include("socialIcons.php");?>
</div>
</div>
</div>
</body>
</html>