-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
executable file
·148 lines (116 loc) · 4.79 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en" class="full-height">
<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>Tanvir Hasan</title>
<!--Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster">
<link href="http://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100" rel="stylesheet">
<!-- Font Awesome -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<!-- Template styles -->
<link href="css/base.css" rel="stylesheet">
<!--Fancybox Style-->
<link href="css/jquery.fancybox.min.css" rel="stylesheet">
<!--Custom Style-->
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<!--Navbar-->
<?php include('includes/navbar.php'); ?>
<!--/.Navbar-->
<!-- Intro Section -->
<!--Carousel Wrapper-->
<?php include('includes/carousel.php'); ?>
<!--/Navigation & Intro-->
<!--Main layout-->
<main>
<!-- First container -->
<div class="container mt-3">
<!-- Section About -->
<?php include('includes/about.php'); ?>
<!-- /.Section About -->
</div>
<!-- /.First container -->
<!-- Second container -->
<?php include('includes/what-i-do.php'); ?>
<!-- Second container -->
<!--Projects section v.2-->
<?php include('includes/projects.php'); ?>
<!--/Projects section v.2-->
<!--Third container-->
<div class="container-fluid" style="background-color: #f3f3f5;">
<div class="container pt-3 pb-3">
<?php include('includes/testimonial.php'); ?>
</div>
</div>
<!--/Third container-->
<div class="container">
<!-- Contact -->
<?php include('includes/contact.php'); ?>
</div>
<!--Third container-->
<div class="container-fluid" style="background-color: #ce51a1;">
<div class="row py-4">
<div class="col-md-12 mt-2">
<!--Section heading-->
<h5 class="text-center white-text mb-2 wow fadeIn" data-wow-delay="0.2s">Lorem ipsum dolor sit amet, consectetur adipisicing elit.Lorem ipsum dolor sit amet, consectetur adipisicing elit.</h5>
</div>
</div>
</div>
<!--/Third container-->
</main>
<!--/Main layout-->
<!-- Scrollspy -->
<div class="dotted-scrollspy clearfix d-none d-sm-block">
<ul class="nav smooth-scroll flex-column">
<li class="nav-item"><a class="nav-link" href="#video-carousel-example2"><span></span></a></li>
<li class="nav-item"><a class="nav-link" href="#about"><span></span></a></li>
<li class="nav-item"><a class="nav-link" href="#portfolio"><span></span></a></li>
<li class="nav-item"><a class="nav-link" href="#contact"><span></span></a></li>
</ul>
</div>
<!--Footer-->
<?php include('includes/footer.php'); ?>
<!--/Footer-->
<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Fancybox JavaScript -->
<script type="text/javascript" src="js/jquery.fancybox.min.js"></script>
<script type="text/javascript" src="js/tether.min.js"></script>
<script>
//Animation init
new WOW().init();
// initialize scrollspy
$('body').scrollspy({
target: '.dotted-scrollspy'
});
// initialize lightbox
// $(function() {
// $("#mdb-lightbox-ui").load("mdb-addons/mdb-lightbox-ui.html");
// });
$('.navbar-collapse a').click(function() {
$(".navbar-collapse").collapse('hide');
});
$(document).on('click', 'a[href^="#video-carousel-example2"], a[href^="#about"], a[href^="#portfolio"], a[href^="#contact"]', function(event) {
event.preventDefault();
$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 500);
})
</script>
</body>
</html>