-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
46 lines (45 loc) · 2.14 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
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="about.css">
<link href="https://fonts.googleapis.com/css?family=Bungee|Slabo+27px|Abril+Fatface" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#portfolio" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand">DSC</a>
</div>
<div class="collapse navbar-collapse" id="portfolio">
<ul class="nav navbar-nav">
<li class="active"><a href="about.html">About</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="coding.html">Coding Playground</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="achievements.html">Achievements</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<h1>About</h1>
<p>I am a Computer Science and Engineering student in Indian Institute of Information Technology Kalyani. I am a passionate programmer and an avid learner. I like to compete in competitive programming contests with unique and precise algorithmic approach. I always try to keep myself updated with latest programming languages and algorithms.</p>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"crossorigin="anonymous"></script>
</body>
</html>