-
Notifications
You must be signed in to change notification settings - Fork 0
/
amenities.html
66 lines (61 loc) · 2.05 KB
/
amenities.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
<!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>Deerview | Ameneties</title>
<link rel="shortcut icon" href="images/Deer.png" type="image/x-icon">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="css/index.css" />
</head>
</html>
<body>
<div class="hero" data-aos="fade-up"
data-aos-duration="1000">
<img src="images/amenities.jpg" alt="">
</div>
<header>
<div class="header__container">
<div class="header__logo">
<img src="images/Deer.png" alt="logo"><span class="header__logo-text">Deerview <br> Heights</span>
</div>
<nav>
<a class="" href="index.html">Home</a>
<a class="" href="community.html">Community Plan</a>
<a class="" href="siteplan.html">Site Plan</a>
<a class="" href="floorplans.html">Floor Plan</a>
<a class="active" href="amenities.html">Amenities</a>
<a class="" href="features.html">Features & Finishes</a>
<a class="" href="gallery.html">Gallery</a>
<a class="" href="magazine/brochure.html">Brochure</a>
</nav>
</div>
</header>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper(".mySwiper", {
spaceBetween: 10,
slidesPerView: 1,
freeMode: true,
watchSlidesProgress: true
});
var swiper2 = new Swiper(".mySwiper2", {
spaceBetween: 10,
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev"
},
thumbs: {
swiper: swiper
}
});
</script>
</body>
</html>