Update of /cvsroot/phpweather/phpweather
In directory usw-pr-cvs1:/tmp/cvs-serv3223
Modified Files:
index.php
Added Files:
pw_style.css
Log Message:
Cleanups... I've added a stylesheet since we're starting to have a
couple of XHTML pages by now.
--- NEW FILE ---
/* Stylesheet for PHP Weather. */
BODY {
font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
font-size: small;
}
DT {
font-weight: bold
}
P {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
Index: index.php
===================================================================
RCS file: /cvsroot/phpweather/phpweather/index.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -3 -r1.31 -r1.32
--- index.php 20 May 2002 15:51:37 -0000 1.31
+++ index.php 29 May 2002 20:11:09 -0000 1.32
@@ -14,25 +14,21 @@
"DTD/xhtml1-transitional.dtd">
<html>
<head>
+ <link rel="stylesheet" type="text/css" href="pw_style.css" />
<title>PHP Weather - test</title>
- <style type="text/css">
-<!--
-BODY {
- font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
- font-size: 13px;
-}
- -->
- </style>
</head>
<body>
-<img src="icons/phpweather-long-white.gif" alt="PHP Weather" align="right">
+<img src="icons/phpweather-long-white.gif" width="187" height="50"
+alt="PHP Weather" align="right" />
<h1>PHP Weather Test Page</h1>
-<p>This is the default test page for PHP Weather. For more information, please visit
-<a href="http://www.phpweather.net">http://www.phpweather.net</a>.</p>
-<p>Data is taken from the <a href="http://weather.noaa.gov">National Weather Service</a> at NOAA.</p>
+<p>This is the default test page for PHP Weather. For more
+information, please visit <a
+href="http://www.phpweather.net">http://www.phpweather.net</a>.</p>
+<p>Data is taken from the <a href="http://weather.noaa.gov">National
+Weather Service</a> at NOAA.</p>
';
|