[Dda-cvs] htdocs members.php,1.1,1.2
Status: Beta
Brought to you by:
doolin
From: David M. D. <do...@us...> - 2006-07-10 22:37:05
|
Update of /cvsroot/dda/htdocs In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv29018 Modified Files: members.php Log Message: Fixed style info for members page. Index: members.php =================================================================== RCS file: /cvsroot/dda/htdocs/members.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** members.php 8 Jul 2006 16:10:29 -0000 1.1 --- members.php 10 Jul 2006 22:37:01 -0000 1.2 *************** *** 1,70 **** ! <html> ! ! <head> ! <meta http-equiv="Content-Language" content="en-us"> ! <meta name="GENERATOR" content="Microsoft FrontPage 6.0"> ! <meta name="ProgId" content="FrontPage.Editor.Document"> ! <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <title>Members</title> ! </head> ! ! <body> ! <font FACE="Arial" SIZE="4"><i><b> ! <table border="4" width="100%" id="table1" cellpadding="10"> ! <tr> ! <td width="17%" valign="top" bgcolor="#CACAFF"> ! </td> ! <td width="78%" bgcolor="#CACAFF"><font FACE="Times New Roman"> ! <p align="center"><font size="7">Members</font></td> ! </tr> ! <tr> ! <td width="17%" valign="top" bgcolor="#CACAFF"> ! <b> ! <font FACE="Arial" SIZE="4"> ! <ul> ! <li> ! <p align="justify" style="line-height: 150%"> ! <font FACE="Times New Roman"> ! <a href="../index.htm"><font color="#000000" size="4">Home page</font></a></font></li> ! <li> ! <p align="justify" style="line-height: 150%"> ! <font FACE="Times New Roman"> ! <a href="Research_Page.htm"><font color="#000000" size="4">Research</font></a></font></li> ! <li> ! <p align="justify" style="line-height: 150%"> ! <font color="#0000FF" FACE="Times New Roman"> ! <a href="Download_Page.htm"><font color="#000000" size="4">Download</font></a><font color="#000000" size="4">s</font></font></li> ! <li> ! <p align="justify" style="line-height: 150%"> ! <font face="Times New Roman"> ! <a href="Members_Page.htm"><font color="#000000" size="4">Members</font></a></font></li> ! <li> ! <p align="justify" style="line-height: 150%"> ! <font FACE="Times New Roman"> ! <a href="References_Page.htm"><font color="#000000" size="4">References</font></a></font></li> ! <li> ! <p align="justify" style="line-height: 150%"><font face="Times New Roman"> ! <a href="Links_Page.htm"><font color="#000000" size="4">Links</font></a></font></li> ! <li> ! <p align="justify" style="line-height: 150%"><font face="Times New Roman"> ! <a href="Photos_Page.htm"><font color="#000000" size="4">Photos</font></a></font></li> ! </ul> ! </font></b> ! <p> </td> ! <td width="78%"><font FACE="Times New Roman" SIZE="3"> ! ! ! <font FACE="Arial" SIZE="4"><i><b> ! <p align="center"><font size="6">Under Construction</font></p> ! </b></i></font> ! <p ALIGN="justify"> </p></font> ! <p> </td> ! </tr> ! </table> ! </b></i></font> - </body> ! </html> \ No newline at end of file --- 1,54 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ! "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml"> ! <head> ! <?php ! include("header.php"); ! ?> ! ! <title> ! Members ! </title> ! </head> ! <body> ! <table border="4" width="100%" id="table1" cellpadding="10"> ! <tr> ! <td width="17%" valign="top" bgcolor="#CACAFF"> ! ! </td> ! ! <td width="78%" bgcolor="#CACAFF"> ! ! <p class="c2"> ! <span class="c1">Members</span> ! </p> ! </td> ! ! ! </tr> ! <tr> ! ! <td width="17%" valign="top" bgcolor="#CCCCFF"> ! <?php ! include("menu.php"); ! ?> ! </td> ! <td width="78%"> ! <p class="c8"> ! Under Construction ! </p> ! <p class="c9"> ! ! </p> ! <p> ! ! </p> ! </td> ! </tr> ! </table> ! </body> ! </html> |