-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
64 lines (62 loc) · 2.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE HTML>
<html>
<head>
<title>ROHIT GUPTA</title>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- modernizr enables HTML5 elements and feature detects -->
<script type="text/javascript" src="js/modernizr-1.5.min.js"></script>
</head>
<body>
<div id="main">
<header>
<div id="logo"><h1>ROHIT<a href="#">GUPTA</a></h1></div>
<nav>
<ul class="lavaLampWithImage" id="lava_menu">
<li><a href="index.html">Home</a></li>
<li class="current"><a href="about.html">About Me</a></li>
<li><a href="portfolio.html">My Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="site_content">
<div id="sidebar_container">
<div class="gallery">
<ul class="images">
<li class="show"><img width="450" height="450" src="images/1.jpg" alt="photo_one" /></li>
<li><img width="450" height="450" src="images/2.jpg" alt="photo_two" /></li>
<li><img width="450" height="450" src="images/3.jpg" alt="photo_three" /></li>
</ul>
</div>
</div>
<div id="content">
<h1>About Me</h1>
<p>I'm B.Tech Computer Science student at Delhi University. </p>
<p>I'm always learning something new. You will oftenly find me trying new softwares and learning new technology. I use open source softwares majorly and support free software foundation. I wanted to build website from my first year of B.tech but I didn't learnt web technology that much so, I forked this template and hosted it on github so that I can fool myself and focus on something else.</p>
<p>I'm audiophile and listen to every type of music. My favourite youtube channel is Aamit Vraj.</p>
</div>
</div>
<footer>
<p><a href="index.html"> Home </a> | <a href="about.html"> About Me </a> | <a href="portfolio.html"> My Portfolio </a> | <a href="blog.html"> Blog </a> | <a href="contact.html"> Contact </a></p>
<p> Issued under GPL | design from <a href="http://www.css3templates.co.uk">here</a></p>
</footer>
</div>
<!-- javascript at the bottom for fast page loading -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.min.js"></script>
<script type="text/javascript" src="js/jquery.lavalamp.min.js"></script>
<script type="text/javascript" src="js/image_fade.js"></script>
<script type="text/javascript">
$(function() {
$("#lava_menu").lavaLamp({
fx: "backout",
speed: 700
});
});
</script>
</body>
</html>