-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
80 lines (62 loc) · 2.09 KB
/
footer.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
<!-- new footer (sticky) -->
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: black;
color: white;
text-align: center;
}
</style>
</head>
<body>
<!-- footer -->
<div class="row footer">
<!-- <div class="col-md-2 box">
<a href="#" data-toggle="modal" data-target="#login" style="color:lightyellow">Admin Login</a>
</div> -->
<!-- <div class="col-md-6 box"> -->
<br><a s style="color:white;" href="#" data-toggle="modal" data-target="#about">About Project</a>
<h5 align="center" style="color:white; text-align:center;">Organized by Department Of Information Science and Engineering</h5>
<a href="https://rvce.edu.in/" style='color:white;'>R.V. College Of Engineering, Bengaluru</a> <br><br></span>
</div>
<!-- footer end -->
<!--
for "about project" section -->
<div class="modal fade" id="about">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h3 class="modal-title"><span style="color:darkblue;font-size:12px;font-weight: bold">About The Project</span></h3>
<?php
$file = fopen("about.txt", "r");
while (!feof($file)) {
$string = fgets($file);
$num = strlen($string) - 1;
$c = str_split($string);
for ($i = 0; $i < $num; $i++) {
$last = $c[$i - 1];
if ($c[$i] == ' ' && $last == ' ') {
echo ' ';
} else {
echo $c[$i];
}
}
echo "<br />";
}
fclose($file);
?>
</div>
</div>
</div>
</div>
</div>
</body>
</html>