-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
81 lines (80 loc) · 2.34 KB
/
Copy pathindex.php
File metadata and controls
81 lines (80 loc) · 2.34 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> group project</title>
<style type="text/css">
#table {position:absolute; top:80px; right:25px;}
.footer {position:fixed; left:0; bottom:0; width:100%; background-color:green; color:white;}
.footer ul li{
display: inline;
padding-right: 16px;
}
.box{
width: 920px;
padding: 8px 16px;
}
</style>
</head>
<body>
<div class="box">
<?php include("HEALTHTIPS.php"); ?>
</div>
<table style="position:fixed;" id="table" bgcolor="#00bfff" height="300px" width="25%" align="right" border="2">
<tr bgcolor="white">
<td cellpadding="2">
<ul>
<li><img src="images/fever.jpg" alt="news" height="50px" width="60px" align="left" hspace="5"/>
<a href="http://www.medicalnewstoday.com"><strong>Mild fever</strong></a><br>
Why fever can be your friend in time of illness</li>
</ul>
</td>
</tr>
<tr bgcolor="white">
<td cellpadding="2">
<ul>
<li><img src="images/ebola.jpg" alt="news2" height="50px" width="60px" align="left" hspace="5"/>
<a href="http://www.webmd.com/A to Z guides/News"><strong>Ebola outbreak in congo</strong></a><br>
Ebola deaths hit 27 in Congo, vacccinations start</li>
</ul>
</td>
</tr>
<tr bgcolor="white">
<td cellpadding="2">
<ul>
<li><img src="images/child.jpg" alt="news3" height="50px" width="60px" align="left" hspace="5"/>
<a href="http://www.medicalnewstoday.com"><strong>Child leukemia</strong></a><br>
Early expossure to microbes may protect childhood from leukemia</li>
</ul>
</td>
</tr>
<tr bgcolor="white">
<td cellpadding="2">
<ul>
<li><img src="images/garoua.jpg" alt="news4" height="50" width="60" align="left" hspace="5"/>
<a href="http://www.cameroon-concord/health.com"><strong>Garoua Reguional hospital</strong></a><br>
The garoua Regional Hospital to become operational in December </li>
</ul>
</td>
</tr>
<tr bgcolor="white">
<td cellpadding="2">
<ul>
<li><img src="images/aids.png" alt="news5" height="50" width="60" align="left" hspace="5"/>
<a href="http://www.cameroon-concord/health.com"><strong>CFA108 Billion Health Grant</strong></a><br>
Cameroon receives CFA108 Billion to fight diseases
</li>
</ul>
</td>
</tr>
</table><br>
<div class="footer">
<ul>
<li><a href="contact"></a>Contact Us</li>
<li><a href="privacy"></a>Privacy policy</li>
<li><a href="copyright"></a>Copyright</li>
<li><a href="admin.php">Admin</a></li>
</ul>
</div>
</body>
</html>