-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
57 lines (51 loc) · 2.7 KB
/
home.php
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
<?php include ("app/db/config.php"); ?>
<?php include ("app/reuse/head.php"); ?>
<body>
<?php include ("app/reuse/navbar.php"); ?>
<!-- Hero banner section -->
<section class="hero">
<div class="hero-text">
<h1>Welcome to Aston Events</h1>
<h3>This website is dedicated to our events!</h3>
<a href="events.php" class="btn">Browse events</a>
</div>
</section>
<!-- About us section -->
<section class="about-us">
<h2 class="about-title">About us</h2>
<div class="row-about">
<div>
<h4 class="about-header">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</h4>
<br>
<p class="about-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur sodales ligula in libero. Sed dignissim lacinia nunc. Curabitur tortor. Pellentesque nibh. Aenean quam. In scelerisque sem at dolor. Maecenas mattis. Sed convallis tristique sem. Proin ut ligula vel nunc egestas porttitor. Morbi lectus risus, iaculis vel, suscipit quis, luctus non, massa. Fusce ac turpis quis ligula lacinia aliquet. Mauris ipsum. Nulla metus metus, ullamcorper vel, tincidunt sed, euismod in, nibh. Quisque volutpat condimentum velit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. </p>
</div>
<div>
<!-- Slideshow -->
<img class="slideshow" src="css/images/sports.jpeg" alt="Sport">
<img class="slideshow" src="css/images/culture.jpeg" alt="Culture">
<img class="slideshow" src="css/images/music.jpeg" alt="Live music">
<figcaption>Sport events, culture and many more.</figcaption>
</div>
</div>
</section>
<?php include ("app/reuse/footer.php"); ?>
</body>
</html>
<script>
// reference for the slideshow: https://www.w3schools.com/w3css/w3css_slideshow.asp
var slide = 0;
carousel();
function carousel() {
var i;
var j = document.getElementsByClassName("slideshow");
for (i = 0; i < j.length; i++) {
j[i].style.display = "none";
}
slide++;
if (slide > j.length) {
slide = 1;
}
j[slide-1].style.display = "block";
setTimeout(carousel, 4000);
}
</script>