-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Landing Page</title>
<!-- <link rel="stylesheet" href="/landing page.css"> -->
<link rel="stylesheet" href="style.css" />
</head>
<body class="lp-body">
<a href="/services/interior-photography" class="lp-name">
<h1 id="lp-heading">NAVEEN GANDLA</h1>
</a>
<a href="/services/interior-photography" class="enter">Enter <span><img src="/services/Images/Social-Icons/enter.png"
alt=""></span> </a>
<section class="lp-section">
<a href="/services/interior-photography" class="slideshow">
<picture>
<img class="lpImage" src="/services/Images/Pages/Landing-page/1.webp" alt="" />
</picture>
<picture>
<img class="lpImage" src="/services/Images/Pages/Landing-page/2.webp" alt="" />
</picture>
<picture>
<img class="lpImage" src="/services/Images/Pages/Landing-page/3.webp" alt="" />
</picture>
<picture>
<img class="lpImage" src="/services/Images/Pages/Landing-page/4.webp" alt="" />
</picture>
<picture>
<img class="lpImage" src="/services/Images/Pages/Landing-page/5.webp" alt="" />
</picture>
</a>
</section>
<script src="https://code.jquery.com/jquery-1.12.3.js" integrity="sha256-1XMpEtA4eKXNNpXcJ1pmMPs8JV+nwLdEqwiJeCQEkyc="
crossorigin="anonymous"></script>
<script>
$(".slideshow > picture:gt(0)").hide();
setInterval(function () {
$(".slideshow > picture:first")
.fadeOut(500)
.next()
.fadeIn(500)
.end()
.appendTo(".slideshow");
}, 2000);
</script>
</body>
</html>