-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css" />
</head>
<body>
<div class="container main">
<div class="content">
<div id="large-header" class="large-header">
<canvas id="animate_background"></canvas>
<h1 class="main-title"><span class="thin">AKASH</span> SRINAGESH</h1>
<span class="element description thin"></span>
<div class="social">
<a href="https://www.facebook.com/akash.srinagesh"><span>Facebook</span></a>
<a href="https://twitter.com/pyromanic221"><span>Twitter</span></a>
<a href="##"><span>Resume</span></a>
<a href="https://github.com/asrinagesh"><span>Github</span></a>
</div>
</div>
</div>
</div>
<script src="js/TweenLite.min.js"></script>
<script src="js/EasePack.min.js"></script>
<script src="js/background.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/typed.js"></script>
<script>
$(function(){
$(".element").typed({
strings: ["Programmer.^1000", "Student.^1000", "Creative.^1000"],
typeSpeed: 10,
loop: true,
contentType: 'html'
});
});
</script>
</body>
</html>