-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SIMPHASE - MEP AND BIM IMPLEMENTATIONS</title>
<link rel="stylesheet" href="styles/styles.css" />
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js" integrity="sha256-xLD7nhI62fcsEZK2/v8LsBcb4lG7dgULkuXoXB/j91c=" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/7786a9f9ae.js" crossorigin="anonymous"></script>
<script>
$(document).ready((e) => {
$("#header-wrapper").load("components/header.html");
$("#footer-wrapper").load("components/footer.html");
});
</script>
</head>
<body>
<header id="header-wrapper">
</header>
<main>
<div class="page-start">
<div class="page-logo">
<img src="images/simphase-transparentbg-white.png" alt="Simphase Logo" />
</div>
<video width="auto" height="100vh" autoplay muted loop id="background-vid">
<source src="videos/simphase1.mp4" type="video/mp4">
<!-- replacement image to display in case video can't load -->
<img src="images/simphase1.jpeg" alt="Simphase Background Video">
</video>
</div>
</main>
<footer id="footer-wrapper"></footer>
</body>
</html>