-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
216 lines (178 loc) · 8.61 KB
/
about.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<html>
<title>Sri Lanka School Of Computing</title>
<head>
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<link rel="icon" href="SLSOC.jpg" type="image/gif" sizes="16x16">
<link rel="stylesheet" type="text/css" href="homecss.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #e3e7f0;
height:auto;
width:1200px;
margin-left:75px;
}
.content
{
height:auto;
margin-left:0px;
margin-bottom:0px;
width:1200px;
background-color: #FFFFFF;
}
.about{
margin-left:50px;
margin-right:50px;
font-family: Times New Roman;
line-height: 180%;
font-size:135%;
text-align: left;
color:#353c47;
}
</style>
<!-- Start Of Back To Top -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" >
var scrolltotop={
setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
controlHTML: '<img src="http://4.bp.blogspot.com/-FF9tEBUa6Lk/UtpgnHSpEaI/AAAAAAAACVA/-CrIj2AigCQ/s1600/Back+To+Top+-+1.png"/>',
controlattrs: {offsetx:5, offsety:5},
anchorkeyword: '#top',
state: {isvisible:false, shouldvisible:false},
scrollup:function(){
if (!this.cssfixedsupport)
this.$control.css({opacity:0})
var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
if (typeof dest=="string" && jQuery('#'+dest).length==1)
dest=jQuery('#'+dest).offset().top
else
dest=0
this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
},
keepfixed:function(){
var $window=jQuery(window)
var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
this.$control.css({left:controlx+'px', top:controly+'px'})
},
togglecontrol:function(){
var scrolltop=jQuery(window).scrollTop()
if (!this.cssfixedsupport)
this.keepfixed()
this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
if (this.state.shouldvisible && !this.state.isvisible){
this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
this.state.isvisible=true
}
else if (this.state.shouldvisible==false && this.state.isvisible){
this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
this.state.isvisible=false
}
},
init:function(){
jQuery(document).ready(function($){
var mainobj=scrolltotop
var iebrws=document.all
mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" &&
window.XMLHttpRequest
mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
.css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety,
right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
.attr({title:'Scroll Back to Top'})
.click(function(){mainobj.scrollup(); return false})
.appendTo('body')
if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='')
mainobj.$control.css({width:mainobj.$control.width()})
mainobj.togglecontrol()
$('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
mainobj.scrollup()
return false
})
$(window).bind('scroll resize', function(e){
mainobj.togglecontrol()
})
})
}
}
scrolltotop.init()
</script> <!-- End Of Back To Top -->
</head>
<body>
<div class="content">
<div id="container">
<div id ="header">
<center><a href="home.php"><img src="SLSOCBannerBox.jpg" alt="SLSOC_Logo" width="1200px"></a></center>
</div>
<ul>
<li><a class="active" href="home.php">Home</a></li>
<li class="dropdown">
<a href="#" class="dropbtn">About US</a>
<div class="dropdown-content">
<a href="about.php">About SLSOC</a>
<a href="lecturerpanel.php">Lecturer Panel</a>
</div>
</li>
<li class="dropdown">
<a href="#" class="dropbtn">Units</a>
<div class="dropdown-content">
<a href="se.php">Software Engineering</a>
<a href="csec.php">Computer Security</a>
<a href="cn.php">Computer Network</a>
<a href="csci.php">Computer Science</a>
</div>
</li>
<li><a href="stulogin.php">Student Area</a></li>
<li><a href="contact.php">Contact</a></li>
<li style="float:right"><a href="apply.php" class="button" target="_blank">Apply Now</a></li>
</ul>
<!-- End Of The Top Part Of The Page -->
<br>
<p class="about">
<img src="SLSOC Biulding.jpg" style="float:right"></img>
Sri Lanka School Of Computing has one of the longest-established Computer Science departments in the country. Formerly known as the SL Computing Laboratory, it is home to a community of world-wide research and teaching. Research activities encompass core Computer Science, as well as computational biology, information systems, software verification and software engineering. The department is home to undergraduates, full-time and part-time Master's students, and has a strong doctoral programme.<br><br>
Sri Lanka School Of Computing Laboratory was set up in 1998 under the direction of <br> Mr. Somasiri Kahandagamage. Within a short time from its foundation it was providing undergraduate lectures in the Faculty of Mathematics, training a number of research students, and running a mainframe computer which provided a computing service to the University generally. During this initial period the research efforts of the Laboratory were directed almost entirely towards analysis and led to the establishment of the Analysis Group.<br><br>
We are Providing BSc (Honours) Software Engineering , BSc (Honours) Computer Security , BSc (Honours) Computer Networks and BSc (Honours) Computer Science Degrees. All of these Degrees are approved by University Grants Commission (UGC).
And we have great qualified Lecturer panel. <br>
<center><iframe width="854" height="480" src="https://www.youtube.com/embed/Lak5IlyQzL0" frameborder="0" allowfullscreen></iframe></center>
</p> <!-- End Of The About Class -->
<br>
<!-- Below Part Of The Page -->
<!-- <div id ="left"></div>
<div id ="right"></div>
<div id ="center"></div> -->
<div id ="footer">
<table width="1168px">
<tr>
<th><h2><u>Looking For Us</u></h2></th>
<th><h2><u>Shortcuts</u></h2></th>
<th><h2><u>Find Us On</u></h2></th>
</tr>
<tr>
<td><p class="address">442 Galle Road<br>
Colombo 03<br>
Sri Lanka<br>
Tel: <a href="tel:+(94) 112565511">+(94) 112565511</a><br>
Fax: <a href="tel:+(94) 112565594">+(94) 112565594</a><br>
Email: <a href="mailto:[email protected]">[email protected]</a></td>
<td>
<a href="home.php">* Home</a><br>
<a href="about.php">* About SLSOC</a><br>
<a href="stulogin.php">* Student System<br></a>
<a href="contact.php">* Contact Us<br></a>
</td>
<td><a href="http://www.facebook.com" target="_blank" class="icon-button facebook"><i class="icon-facebook"></i><span></span> Facebook</a><br>
<a href="https://twitter.com" target="_blank" class="icon-button twitter"><i class="icon-twitter"></i><span></span> Twitter</a><br>
<a href="http://www.youtube.com" target="_blank" class="icon-button google-plus"><i class="icon-google-plus"></i><span></span> Youtube</a>
</td>
</tr>
</table></p>
<hr> <p class="copyright">
Copyright © 2016 Sri Lanka School Of Computing - SLSOC.
Designed & Developed By <a href="http://allsevennet.blogspot.com/" target="_blank">Fit Swift GaNg / Seven Net</a></p>
</div> <!-- End Of The Footer -->
</div> <!-- End Of ID Container CSS / White Background -->
</div> <!--End Of Body Class Content CSS-->
</body>
</html>