forked from hydrasbane1/tech-acc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
54 lines (45 loc) · 1.94 KB
/
index.php
File metadata and controls
54 lines (45 loc) · 1.94 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
53
54
<?php include("header.inc"); ?>
<!-- This is the php that includes the header -->
<main>
<section>
<h1 class="pageTitle">Parent Advisory Committee</h1>
Arlngton Tech - Arlington Career Center
<h1 class="smallerTitle">Home</h1>
<!-- Page title above. <hr> is the weird break black line below. Never knew about it till now -->
<hr>
<!-- Slideshow below -->
<div class="background">
<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>
</div>
<!-- This is a discription of the website underneath the slideshow -->
<p>Welcome to the Arlington Tech website, on this site you will be able to find important information regarding the Arlington Tech programs, projects, news.</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 the program</h2>
<img class=icon src="static/media/pen.ico" alt="tux"/>
<p>Picture maybe?</p>
</a>
<a class="setbox" href="/project">
<h2>History/Legacy of the program</h2>
<img class=icon src="static/media/pen.ico" alt="tux"/>
<p>Quick explanation of recent history or legacy</p>
</a>
<a class="setbox" href="/contact">
<h2>Contact us</h2>
<img class=icon src="static/media/pen.ico" alt="tux"/>
<p>For more information contact us by clicking here!</p>
</a>
</div>
<hr>
</main>
<!-- This is the footer -->
<?php include ("footer.inc"); ?>