-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
49 lines (49 loc) · 1.41 KB
/
about.html
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
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - CBIT student project portal</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<div id="header">
<div>
<div class="logo">
<a href="index.html"></a>
</div>
<ul id="navigation">
<li>
<a href="index.html">Home</a>
</li>
<li class="active">
<a href="about.html">About</a>
</li>
</ul>
</div>
</div>
<div id="contents">
<div id="about">
<h1>About</h1>
<h2>Inspiration</h2>
<p>
The initial thought of creating this web page was that we dont have any facility to upload projects or get any ideas.
</p>
<h2>Everyone is a contributor</h2>
<p>
Every student uploading a project is a contribuor to the department and college. You can put liscence to you projects either under MIT-GPL or other liscencing.
</p>
<h2>Be Part of College Git</h2>
<p>
If you are enthusiastic about learning more on version control visit <a href="https://github.com/cbitosc">, college GiT</a> ,or follow the <a href="https://coscfbx.cbit.org.in/ikiwiki/CbitOSC/">college WiKi</a> to interact with other people in the college who share the same interests with you.
</p>
</div>
</div>
<div id="footer">
<div class="clearfix">
<p>
developed by P Jitendra Kalyan, R Pranith Kumar.
</p>
</div>
</div>
</body>
</html>