-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
executable file
·72 lines (64 loc) · 3.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Umesh Khanna</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link href='http://fonts.googleapis.com/css?family=Raleway:100,200,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/font-awesome.min.css">
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<div class="loader-container">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<center><img src="img/profile-pic.jpg" class="profile-pic"></center>
<div class="main-heading" style="margin-top:10px">About Me</div>
<div class="header-divider"></div>
</div>
</div>
<div class="row" style="max-width: 500px; float: none; margin: 0 auto; margin-top:30px">
<div class="col-lg-12 sub-heading" style="padding:0; font-style: normal; font-size: 15px; text-align: left">
As a first year electrical engineering student, it’s fascinating to be able to access various subjects at a more advanced level.
Having started a company at the age of 14 to earn a small amount of extra pocket money, I’ve been able to learn and develop skills in marketing, finance and management. Expanding the company for over three years, I was able to hire employees and eventually sell the company in the summer of 2014.<br><br>
Programming is somewhat of a passion for me. Having started learning Java in a computer science class, I later developed an interest in coding as it was enjoyable, challenging and rewarding all at the same time. I later attempted android programming and eventually moved onto web development. Making websites for companies and others is enjoyable but also comes with perks of having the ability to showcase your ideas and skills for everyone to see.
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
var hash = window.location.hash,
current = 0,
demos = Array.prototype.slice.call( document.querySelectorAll( '#codrops-demos > a' ) );
if( hash === '' ) hash = '#set-1';
setDemo( demos[ parseInt( hash.match(/#set-(\d+)/)[1] ) - 1 ] );
demos.forEach( function( el, i ) {
el.addEventListener( 'click', function() { setDemo( this ); } );
} );
function setDemo( el ) {
var idx = demos.indexOf( el );
if( current !== idx ) {
var currentDemo = demos[ current ];
currentDemo.className = currentDemo.className.replace(new RegExp("(^|\\s+)" + 'current-demo' + "(\\s+|$)"), ' ');
}
current = idx;
el.className = 'current-demo';
}
</script>
<script>
setTimeout(function() {
$('.loader-container').slideUp();
}, 2000);
</script>
</body>
</html>