summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--htdocs/base.css10
-rwxr-xr-xhtdocs/index.html8
-rw-r--r--htdocs/non-netscape.css12
3 files changed, 23 insertions, 7 deletions
diff --git a/htdocs/base.css b/htdocs/base.css
index 4213528..f939fa2 100644
--- a/htdocs/base.css
+++ b/htdocs/base.css
@@ -4,9 +4,11 @@
Copyright © 2000 W3C (MIT, INRIA, Keio). All Rights Reserved.
See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
- $Id: base.css,v 1.10 2001-07-28 22:32:31 link Exp $
+ $Id: base.css,v 1.11 2001-08-28 00:35:56 link Exp $
*/
+@import url(non-netscape.css);
+
body {
color: black;
background: white;
@@ -59,10 +61,6 @@ address {
}
p.navbar a {text-decoration: none}
-p.navbar {
- float: right;
- text-align: right;
-}
table th {
text-align: right;
@@ -150,4 +148,4 @@ h6 {
text-transform: none;
}
-) \ No newline at end of file
+
diff --git a/htdocs/index.html b/htdocs/index.html
index b2246d2..c68a405 100755
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -34,6 +34,12 @@
documents like HTML and XHTML for conformance to W3C Recommendations
and other standards.
</p>
+ <div class="nsnote">
+ <h2>Why does this page look so funny?</H2>
+ <p>Because you're using a UA that has buggy support for CSS
+ (*cough*Netscape*cough*). Get one that does, they are available
+ for all platforms for free, and you'll be much much happier.</P>
+ </div>
<div>
<h2>Recent Updates</h2>
@@ -146,7 +152,7 @@
src="http://validator.w3.org/images/vxhtml10" height="31" width="88"
alt="Valid XHTML 1.0!" /></a>
<a href="/feedback.html">Gerald Oskoboiny</a><br />
- $Date: 2001-08-25 09:10:02 $
+ $Date: 2001-08-28 00:35:56 $
</address>
</body>
</html>
diff --git a/htdocs/non-netscape.css b/htdocs/non-netscape.css
new file mode 100644
index 0000000..87aa48b
--- /dev/null
+++ b/htdocs/non-netscape.css
@@ -0,0 +1,12 @@
+/*
+ non-netscape.css - CSS that is hidden from NS 4.x
+ $Id: non-netscape.css,v 1.1 2001-08-28 00:35:56 link Exp $
+*/
+p.navbar {
+ float: right;
+ text-align: right;
+}
+
+.nsnote {
+ display: none;
+}