-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
99 lines (91 loc) · 3.74 KB
/
index.php
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
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>SPARKLE DANCE ACADEMY | Home Page</title>
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false);
function hideURLbar(){ window.scrollTo(0,1); } </script>
<!--// Meta tag Keywords -->
<!-- css files -->
<link rel="stylesheet" href="css/bootstrap.css"> <!-- Bootstrap-Core-CSS -->
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" /> <!-- Style-CSS -->
<link rel="stylesheet" href="css/font-awesome.css"> <!-- Font-Awesome-Icons-CSS -->
<link rel="stylesheet" href="css/flexslider.css" type="text/css" media="screen" property="" /> <!-- Flexslider-CSS -->
<!-- //css files -->
<link href="//fonts.googleapis.com/css?family=Alex+Brush&subset=latin-ext" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Contrail+One" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Farsan&subset=gujarati,latin-ext,vietnamese" rel="stylesheet">
</head>
<body>
<!-- banner -->
<div class="main-agile">
<div class="banner">
<div class="w3l-overlay">
<video autoplay muted loop id="bg-video">
<source src="./images/video/dance.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="container">
<h1><a class="w3l-logo" href="index.php">SPARKLE DANCE ACADEMY<span></span></a></h1>
<div class="w3l_banner_info">
<section class="slider">
<div class="flexslider">
<ul class="slides">
<li>
<div class="wthree_banner_info_grid">
<h6>DANCE</h6>
<h3>Every dance tells a story!</h3>
</div>
</li>
<li>
<div class="wthree_banner_info_grid">
<h6>DANCE</h6>
<h3>ನೃತ್ಯವು ಜೀವಾಳದ ಸಂಗೀತವಾಗಿದೆ!</h3>
</div>
</li>
<li>
<div class="wthree_banner_info_grid">
<h2>DANCE</h2>
<h3>नृत्य जीवन का सार है, दिल का गीत।</h3>
</div>
</li>
</ul>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- Nav -->
<?php include_once('includes/header.php');?>
<div class="clearfix"> </div>
<!-- //Nav -->
</div>
<!-- //banner -->
<?php include_once('includes/footer.php');?>
<!-- js-scripts -->
<!-- js -->
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script> <!-- Necessary-JavaScript-File-For-Bootstrap -->
<!-- //js -->
<!-- flexSlider -->
<script defer src="js/jquery.flexslider.js"></script>
<script type="text/javascript">
$(window).load(function(){
$('.flexslider').flexslider({
animation: "slide",
start: function(slider){
$('body').removeClass('loading');
}
});
});
</script>
<!-- //flexSlider -->
<!-- menu -->
<script type="text/javascript" src="js/main.js"></script>
<!-- //menu -->
<!-- smooth scrolling -->
<script src="js/SmoothScroll.min.js"></script>
<!-- //smooth scrolling -->
<!-- //js-scripts -->
</body>
</html>