-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexold.php
More file actions
52 lines (51 loc) · 1.58 KB
/
indexold.php
File metadata and controls
52 lines (51 loc) · 1.58 KB
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
<!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 lang="en">
<head>
<meta charset="UTF-8">
<?php
include "./includes/header.php"
?>
</head>
<body>
<?php
include "./includes/nav.php"
?>
<div class="hero-carousel">
<video autoplay muted loop id="MainVid">
<source src="images/Chiron.mp4" type="video/mp4">
</video>
<div class="hero-data">
<p class="hero-title">L U X A U T O</p>
<p class="hero-description">The all new Bugatti Chiron now available</p>
</div>
</div>
<div class="promo-cats">
<div class="cat">
<a href="brand.php">
<img class="abs" src="images/hd/cat4.png"/>
<h2 class="cat-desc">Browse Selections</h2>
</a>
</div>
<div class="cat">
<a href="reviews.php">
<img class="abs" src="images/hd/cat2.png"/>
<h2 class="cat-desc">Customer Reviews</h2>
</a>
</div>
<div class="cat">
<a href="about.php">
<img class="abs" src="images/hd/cat3.png"/>
<h2 class="cat-desc">About Us</h2>
</a>
</div>
</div>
<?php
include "./includes/footer.php";
?>
</body>
</html>