-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.56 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
<!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 Heights</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" />
<link rel="stylesheet" href="css/siteplan.css" />
</head>
</html>
<body>
<div class="hero" data-aos="fade-up"
data-aos-duration="1000">
<video src="images/DH_Intro_Final.mp4" autoplay controls loop ></video>
</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="active" 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="" 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>
</body>
</html>