-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
50 lines (43 loc) · 1.73 KB
/
index.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
<?php include("header.inc"); ?>
<!-- This is the php that includes the header -->
<main>
<section>
<h2 class="pageTitle">Home</h2>
<!-- Page title above. <hr> is the weird break black line below. Never knew about it till now -->
<hr>
<!-- Slideshow below -->
<div id="slides" style="height: 142px;">
<img id="slide1" class="stacked" src="static/media/projectImages/Building.jpg" alt="Building">
<img id="slide2" class="stacked" src="static/media/projectImages/diconnecting.jpg" alt="Disconnecting">
<img id="slide3" class="stacked" src="static/media/projectImages/measuring.jpg" alt="Measuring">
<img id="slide4" class="stacked" src="static/media/projectImages/measuringvoltage.jpg" alt="voltage">
<img id="slide5" class="stacked" src="static/media/projectImages/takinglux.jpg" alt="lux">
</div>
<!-- This is a discription of the website underneath the slideshow -->
<p>Welcome to the Olorun project's official website. This website will serve as a way To show the project's progress and triumphs.</p>
</section>
<hr class="clear">
<!-- These are the boxes that will describe the diffrent sections of the websites and links to them -->
<div class="boxes">
<a class="setbox" href="about.php">
<h2>About olorun</h2>
<p>Learn more about the Olorun project</p>
</a>
<a class="setbox" href="">
<h2>What are we doing?</h2>
<p>Learn more about the Olorun project is currently involved in</p>
</a>
</div>
<div class="boxes">
<a class="setbox" href="info.php">
<h2>Info</h2>
<p>Information about our projects</p>
</a>
<a class="setbox" href="">
<h2>Contact Us</h2>
<p>For more information contact us by clicking here!</p>
</a>
</div>
</main>
<!-- This is the footer -->
<?php include ("footer.inc"); ?>