-
Notifications
You must be signed in to change notification settings - Fork 0
/
photography.html
99 lines (91 loc) · 4.66 KB
/
photography.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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Ruban Rajendran</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/swiper.css" />
<link rel="stylesheet" href="css/shared.css" />
<link rel="stylesheet" href="css/photography.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/swiper.jquery.js"></script>
<script src="js/swiper.js"></script>
<script src="js/myscript.js"></script>
</head>
<body>
<div id="header">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Ruban Rajendran</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right" id="navList">
<li><a href="index.html">HOME</a></li>
<!--<li><a href="aboutMe.html">ABOUT</a></li>-->
<li><a href="photography.html">PHOTOGRAPHY</a></li>
<!--<li><a href="contactMe.php">CONTACT</a></li>-->
</ul>
</div>
</div>
</nav>
</div>
<div id="main">
<!-- Slider main container -->
<div class="swiper-container">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<div class="swiper-slide"><img class="slide" src='images/photography/1.jpg' alt="image1"></div>
<div class="swiper-slide"><img class="slide" src='images/photography/2.jpg' alt="image2"></div>
<div class="swiper-slide"><img class="slide" src='images/photography/3.jpg' alt="image3"></div>
<div class="swiper-slide"><img class="slide" src='images/photography/4.jpg' alt="image4"></div>
<div class="swiper-slide"><img class="slide" src='images/photography/5.jpg' alt="image5"></div>
<div class="swiper-slide"><img class="slide" src='images/photography/6.jpg' alt="image6"></div>
...
</div>
<!-- If we need navigation buttons -->
<!-- <div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>-->
</div>
</div>
<footer class='footerContainer'>
<div class="">
<div class="col-sm-4 footerItem">
<div class="footerTitle">EMAIL</div>
<div class="footerDesc"><a href="mailto:ruban.raj710@gmail.com?Subject=Hello Hello" target="_top">RUBAN.RAJ710@GMAIL.COM</a></div>
</div>
<div class="col-sm-4 footerItem">
<div class="footerTitle">SOCIAL</div>
<div class="footerDesc">
<a href="https://www.instagram.com/rubanraj7/"><img class="socialIcon" src="images/instagram.png" alt="IG"></a>
<a href="https://ca.linkedin.com/in/ruban-rajendran-88bb0550"><img class="socialIcon" src="images/linkedin.png" alt="IG"></a>
</div>
</div>
</div>
</footer>
<script>
var mySwiper = new Swiper ('.swiper-container', {
// Optional parameters
autoplay:3000,
loop: true,
effect: 'fade'
// Navigation arrows
// nextButton: '.swiper-button-next',
// prevButton: '.swiper-button-prev'
}) ;
</script>
</body>
</html>