forked from dpsnmun/dpsnmun.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (76 loc) · 2.89 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
<!DOCTYPE html>
<html>
<head>
<meta content="initial-scale=1" name="viewport">
<title>Home | DPSN MUN</title>
<!-- Adding favicon-->
<link href="images/favicon.ico" rel="icon" type="image/x-icon">
<link href="images/apple-touch-icon.png" rel="apple-touch-icon-precomposed">
<!-- Embedding Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Serif' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<!-- Embedding stylesheets -->
<link href="stylesheets/normalize.css" rel="stylesheet">
<link href="stylesheets/style.css" rel="stylesheet">
<link href="stylesheets/override.css" rel="stylesheet">
<link href="stylesheets/animate.css" rel="stylesheet">
<!-- Embedding scripts -->
<script src="scripts/wow.min.js"></script>
<script src="scripts/header.js"></script>
<script src="scripts/jquery-2.1.0.min.js"></script>
<!-- Webmaster verification -->
<meta name="google-site-verification" content="5s0c72Tj_M_1sFZtiTqwRKEyHCLT4IHvvLN7SJtOkRU" />
</head>
<body style="background-image: url('images/bg.jpg'); background-repeat: no-repeat; background-position: center; ">
<div class="nav" id="bar">
<img align="left" class="menu" onclick="show()" src="images/icon.png">
<a class="link wow fadeInDown" href="#">Home</a>
<a class="link wow fadeInDown" href="about.html">About</a>
<a class="link wow fadeInDown" href="details.html">Details</a>
<a class="link wow fadeInDown" href="resources.html">Resources</a>
<a class="link wow fadeInDown" href="contact.html">Contact</a>
</div>
<div class="container">
<div class="row">
<div class="column full center">
<p class="title fadeInDown wow">DPSN MUN</p>
<p class="subtitle fadeInUp wow">Commitment Redefined</p>
<p class="date fadeInUp wow">21-22 October, 2016</p>
<img class="logo wow fadeInUp" src="images/Logo.png">
<br>
</div> <!--
<!--
<BR />
<A class="button wow fadeIn" href="#">
Explore
</A>
-->
</div>
</div>
</div><script>
new WOW().init();
var menu = "small";
function show() {
if (menu == "small") {
$('.nav').css('min-height','20.5em');
$('.link').css('opacity','1');
$('.link').css('display','inline-block');
menu = "big";
} else {
$('.link').css('opacity','0').delay(250);
$('.link').css('display','none');
$('.nav').css('min-height','3.5em');
menu = "small";
}
}
window.addEventListener("orientationchange", function() {
if(window.innerHeight < window.innerWidth){
$('.link').css('opacity','1');
$('.link').css('display','inline-block');
}
}, false);
</script>
</body>
</html>