-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
25 lines (25 loc) · 820 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Do+Hyeon" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="static/style/styler.css">
<link rel="stylesheet" type="text/css" href="static/style/snows.css">
<script src="static/jquery.js"></script>
<title>Avinash Shenoy's Interactive Resume</title>
<script>
function loadPage() {
$('#toload').load('page.html', function() {
// setTimeout(function() {
// // clearLoader();
// document.getElementById("toload").style.display = "";
// }, 3000);
});
}
</script>
</head>
<body>
<div style="display: none;" id="toload"></div>
<script onload="loadPage()" src="static/loader.js"></script>
</body>
<!--<script src="static/master.js" type="text/javascript"></script>-->
</html>