-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.php
98 lines (87 loc) · 3.58 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
<?php
/**
* Created by PhpStorm.
* User: Kartik
* Date: 23-Feb-17
* Time: 6:41 PM
*/
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" type="text/css" href="css/header_footer.css">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
</head>
<style>
#about
{
margin: 3% 10% 0 10%;
font-family: "Arial";
}
h2
{
color:midnightblue;
}
p
{
margin-left: 20px;
margin-right: 15px;
font-size: 20px;
line-height: 30px;
}
</style>
<div id="wrapper">
<header>
<br />
<h2 id="title">STUDENT PLACEMENT TRAINING</h2>
<br />
</header>
</div>
<body>
<div id="about">
<h2>
About
</h2>
<p>
Now a days everything is getting computerized and automated, computers with the help of internet can do a lot of things that saves a lot of human effort and time, as engineering colleges are technical they have made sure that they are at par with evolving technology,
to help the colleges to keep up with the technology, here is a web based project that intends to empower students to meet industry Challenges and provide placement training to the students of our college on core subjects of the Computer Science like C, Object Oriented concepts, Data-Structures and algorithms and Aptitude.
</p>
</div>
<div style="margin: 3% 0 0 10%;" >
<h2 id="developers_info" style="font-family: 'Courier New';">
Team
</h2>
<address style="display: inline; float: left; padding: 20px;"><b>ABHISHEK BABLADI</b><br />USN:- 2SD14CS028<br />BATCH:- 2014-18<br />Computer Science Engineer @ SDMCET.<br />Email id:- [email protected]</address>
<address style="display: inline; float: left; padding: 20px;"><b>DEEPAK JOSHI</b><br />USN:- 2SD14CS034<br />BATCH:- 2014-18<br />Computer Science Engineer @ SDMCET.<br />Email id:- [email protected]</address>
<address style="display: inline; float: left; padding: 20px;"><b>KARTIK KALAGHATGI</b><br />USN:- 2SD14CS048<br />BATCH:- 2014-18<br />Computer Science Engineer @ SDMCET.<br />Email id:- [email protected]</address>
<address style="display: inline; float:left; padding: 20px;"><b>PAVAN DHUMWAD</b><br />USN:- 2SD14CS070<br />BATCH:- 2014-18<br />Computer Science Engineer @ SDMCET.<br />Email id:- [email protected]</address>
</div>
<div style="margin: 3% 10% 0 10%; clear: both ">
<h2 style="font-family: 'Courier New';">
Guide
</h2>
<address style="padding: 20px">
<b>Prof.BHARGAVI MOKASHI</b>,<br />
Assistance Professor Department of Computer Science,<br />
SDM College of Engineering,<br >
Dharwad.
</address>
</div>
</body>
<footer style="display: inline;">
<div class="footer" align="center" style="white-space: normal; background-color: #4CAF50;">
<br /><br />
    
<a href="report_problem.php" style="color: white;">Report_Problem</a>
    
<a href="contact_us.php" style="color: white; ">Contact_us</a>
    
<a href="about.php" style="color: white; ">About</a>
    
<br /><br /><br />
</div>
</footer>
</html>