-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·113 lines (103 loc) · 4.35 KB
/
index.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!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>Sagar Aryal</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,400' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/font-awesome.min.css">
<script src="js/modernizr.custom.js"></script>
</head>
<body >
<style>
body {
background: "img/background_image.jpg";
background-size: 1080px 600px;
background-repeat: no-repeat;
}
</style>
<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">
<div class="main-heading">Sagar Aryal</div>
<div class="sub-heading">Entrepreneur • University of Waterloo • Engineer</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-4" style="padding:0">
<div class="hi-icon-wrap hi-icon-effect-3 hi-icon-effect-3b" style="padding:0">
<a href="about.html" class="hi-icon hi-icon1 icon-about" style="text-decoration:none">a</a>
<div class="sub-heading" style="font-style:normal; font-size: 18px">About</div>
</div>
</div>
<div class="col-lg-4" style="padding:0">
<div class="hi-icon-wrap hi-icon-effect-3 hi-icon-effect-3b" style="padding:0">
<a href="projects.html" class="hi-icon hi-icon1 icon-projects" style="text-decoration:none">a</a>
<div class="sub-heading" style="font-style:normal; font-size: 18px">Projects</div>
</div>
</div>
<div class="col-lg-4" style="padding:0">
<div class="hi-icon-wrap hi-icon-effect-3 hi-icon-effect-3b" style="padding:0">
<a href="raw/Resume.pdf" class="hi-icon hi-icon1 icon-resume" style="text-decoration:none">a</a>
<div class="sub-heading" style="font-style:normal; font-size: 18px">Resume</div>
</div>
</div>
</div>
<div class="row" style="max-width: 500px; float: none; margin: 0 auto; margin-top:20px">
<div class="col-lg-4" style="padding:0">
<div class="hi-icon-wrap hi-icon-effect-3 hi-icon-effect-3b" style="padding:0">
<a href="https://www.linkedin.com/in/sagararyal" class="hi-icon hi-icon1 icon-linkedin" style="text-decoration:none">a</a>
<div class="sub-heading" style="font-style:normal; font-size: 18px">LinkedIn</div>
</div>
</div>
<div class="col-lg-4" style="padding:0">
<div class="hi-icon-wrap hi-icon-effect-3 hi-icon-effect-3b" style="padding:0">
<a href="https://github.com/sagararyal" class="hi-icon hi-icon1 icon-git" style="text-decoration:none">a</a>
<div class="sub-heading" style="font-style:normal; font-size: 18px">GitHub</div>
</div>
</div>
<div class="col-lg-4" style="padding:0">
<div class="hi-icon-wrap hi-icon-effect-3 hi-icon-effect-3b" style="padding:0">
<a href="mailto:sorry@gmail.com" class="hi-icon hi-icon1 icon-contact" style="text-decoration:none">a</a>
<div class="sub-heading" style="font-style:normal; font-size: 18px">Contact</div>
</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>