-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php~
More file actions
64 lines (52 loc) · 1.67 KB
/
index.php~
File metadata and controls
64 lines (52 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
64
<?php
//This page represents the home page. It takes the header from header_common.
//Authors - FlipTeam@framehawk.com
//Used in TME Project
?>
<?php include 'common_files/header.php'; ?>
<?php include 'common_files/top_ribbon.php'; ?>
<div class="clear"></div>
<div class="grid_2 prefix_0 suffix_2">
<div class="lesson_label">
<div class="shadow1">
<div class="content" style="cursor:pointer">
<img alt="logo" src="images/aids-ribbon.png" id="label1" height="120" width="140">
<br/> <center> <b> HIV / AIDS </b>
</center>
<a href="hiv_aids_home.php"></a>
</div>
</div>
</div>
</div>
<div class="grid_2 prefix_1 suffix_2">
<div class="lesson_label">
<div class="shadow1">
<div class="content" style="cursor:pointer">
<img alt="logo" src="images/Hygiene.png" id="label2" height="130" width="140">
<br/> <center> <b> Basic Hygiene </b></center>
<a href="test2.php"></a>
</div>
</div>
</div>
</div>
<div class="grid_2 prefix_1 suffix_2">
<div class="lesson_label">
<div class="shadow1">
<div class="content">
<img alt="logo" src="images/nosmoking.png" id="label3" height="130" width="140">
<br/> <center> <b> Dangers of Smoking</b> <!-- change this -->
</center>
<a href="start.php"></a>
</div>
</div>
</div>
</div>
<!-- The following JQuery is used to fetch the anchor tag in the div element and redirect the browser to that location. -->
<script>
$(".content").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
</script>
<div class="clear"></div>
<?php include 'common_files/footer.php'; ?>