-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (99 loc) · 3.79 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Demo App</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css">
<link rel="icon" href="http://protransferweb.imaxel.com/wp-content/uploads/2014/02/demo-icon.png">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<!-- Template styles -->
<style rel="stylesheet">
/* TEMPLATE STYLES */
html,
body,
.view {
height: 100%;
}
/* Navigation*/
.view {
background: url("/img/lightbox/bg.jpg")no-repeat center center fixed;
opacity: 0.9;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
</head>
<body class="view">
<div class="container">
<div class="row">
<h3 class="heading">WE CAN CHANGE THE WORLD!</h3>
</div>
<!-- <div class="row "> -->
<div class="col-md-6 col-md-offset-3 card effect5 wow fadeInRight">
<div class="row">
<a href="">
<div class="col-md-4 image1 effect">
<h3 class="heading">About</h3>
</div>
</a>
<a href="">
<div class="col-md-4 image2 effect">
<h3 class="heading">Donate</h3>
</div>
</a>
<div class="col-md-4 image3 effect">
<h3 class="heading">Join Us</h3>
</div>
</div>
<div class="row">
<a href="">
<div class="col-md-4 image4 effect">
<h3 class="heading">Gallery</h3>
</div>
</a>
<a href="">
<div class="col-md-8 image5 effect"></div>
</a>
</div>
<div class="row">
<a href="">
<div class="col-md-4 image6 effect">
<h3 class="heading">Activities</h3>
</div>
</a>
<a href="">
<div class="col-md-4 image7 effect">
<h3 class="heading">Contact Us</h3>
</div>
</a>
<a href="">
<div class="col-md-4 image8 effect">
<h3 class="heading"></h3>
</div>
</a>
</div>
</div>
</div>
<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="js/jquery-2.2.3.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/tether.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<script>
new WOW().init();
</script>
</body>
</html>