-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (92 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Project Vision</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="./img/favicon.ico">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<link rel="stylesheet" href="./css/pagewalkthrough.css">
<style>
html, body
{
height: 100%;
width: 100%;
padding:0;
margin:0;
}
#layer {
background: #333 url('./img/loading.gif') no-repeat 50% 70%;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:9999;
}
#layer-inside
{
font-size:30px;
font-family: 'Qwigley', cursive;
position: absolute;
top:30%;
width:100%;
color: rgba(255,255,255, 0.55);
}
</style>
</head>
<!--[if lt IE 9 ]>
<script>
var ie = true;
</script>
<![endif]-->
<body>
<link href='https://fonts.googleapis.com/css?family=Qwigley' rel='stylesheet' type='text/css'>
<div id="layer">
<div id="layer-inside">
<center>
<font style="color: rgba(255,255,255, 0.8); font-size:60px;">Project Vision</font><br>
A Future Vision to Algae of Bay of Bengal
</center>
</div>
</div>
<!-- javascript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.2.0/js/tooltip.min.js"></script>
<script src="./js/nicescroll.js"></script>
<link href='https://fonts.googleapis.com/css?family=Jura' rel='stylesheet' type='text/css'>
<script>
$(document).ready(
function() {
$("html").niceScroll({
cursorcolor:"#228DFF",
horizrailenabled: false,
cursorborder: "none",
cursorborderradius: 2,
cursorwidth: "5px",
zindex: 9999
});
}
);
$(window).load(function(){
$.get( "./body.html", function( data ) {
$("body").append(data);
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60268647-3', 'auto');
ga('send', 'pageview');
</script>
<div id="main-container"></div>
</body>
</html>