diff options
author | ot <ot@localhost> | 2007-05-31 02:32:14 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-05-31 02:32:14 +0000 |
commit | 74076c8b3aa0038723ab77e9ec40dbf7abe65499 (patch) | |
tree | 3ae1464f041a50332ab167378058ea37926bb0f3 /htdocs/header.html | |
parent | 2230ea5f39406b35c4d02f800d464a6d9a90fc51 (diff) | |
download | markup-validator-74076c8b3aa0038723ab77e9ec40dbf7abe65499.zip markup-validator-74076c8b3aa0038723ab77e9ec40dbf7abe65499.tar.gz markup-validator-74076c8b3aa0038723ab77e9ec40dbf7abe65499.tar.bz2 |
In collaboration with (and mostly courtesy of) Valerio Proietti (mad4milk/mootools),
cleanup and revamp of the CSS and scripting used, mostly by the main UI of the validator.
Changes include:
* cleaner CSS for the UI
* (more) accessible, gracefully degrading tab and toggle scripting
* smooth, unobtrusive transition effects
* form styling
* Toggle and tab scripting now use mootools as framework, allowing for addressing of each "view"
(e.g one can link directly to the "by upload", "with options toggled on"
this was an issue in earlier toggle script versions for the CSS validator
* scripting with smaller footprint
* minor CSS changes (page and UI takes all width, etc)
Diffstat (limited to 'htdocs/header.html')
-rwxr-xr-x | htdocs/header.html | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/htdocs/header.html b/htdocs/header.html index c152447..d24934c 100755 --- a/htdocs/header.html +++ b/htdocs/header.html @@ -6,13 +6,12 @@ <title><!--#echo var="title" --></title> <link rev="made" href="mailto:www-validator@w3.org" /> <link rev="start" href="<!--#echo var="relroot" -->" title="Home Page" /> - <style type="text/css" media="all">@import "<!--#echo var="relroot" -->style/base.css"; -</style> - <script type="text/javascript" src="<!--#echo var="relroot" -->scripts/tabtastic/addclasskillclass.js"></script> - <script type="text/javascript" src="<!--#echo var="relroot" -->scripts/tabtastic/attachevent.js"></script> - <script type="text/javascript" src="<!--#echo var="relroot" -->scripts/tabtastic/addcss.js"></script> - <script type="text/javascript" src="<!--#echo var="relroot" -->scripts/tabtastic/tabtastic.js"></script> - <meta name="revision" content="$Id: header.html,v 1.48 2007-04-19 19:41:42 ville Exp $" /> + <style type="text/css" media="all"> + @import "<!--#echo var="relroot" -->style/base.css"; + </style> + <script type="text/javascript" src="scripts/mootools.js"></script> + <script type="text/javascript" src="scripts/w3c-validator.js"></script> + <meta name="revision" content="$Id: header.html,v 1.49 2007-05-31 02:32:14 ot Exp $" /> <meta name="keywords" content="HTML, HyperText Markup Language, Validation, W3C Markup Validation Service" /> <meta name="description" content="W3C's easy-to-use @@ -21,14 +20,17 @@ <!--#if expr="$feeds = 1" --> <link rel="alternate" type="application/atom+xml" href="<!--#echo var="relroot" -->whatsnew.atom" /> <!--#endif --> - <!-- SSI Template Version: $Id: header.html,v 1.48 2007-04-19 19:41:42 ville Exp $ --> + <!-- SSI Template Version: $Id: header.html,v 1.49 2007-05-31 02:32:14 ot Exp $ --> </head> <body> <div id="banner"> - <h1 id="title"><a href="http://www.w3.org/"><img height="48" alt="W3C" id="logo" src="http://www.w3.org/Icons/WWW/w3c_home_nb" /></a> - <a href="<!--#echo var="relroot" -->"><img src="<!--#echo var="relroot" -->images/markup_validation_service.png" alt="Markup Validation Service" /></a></h1> + <h1 id="title"> + <a href="http://www.w3.org/"><img alt="W3C" width="110" height="61" id="logo" src="<!--#echo var="relroot" -->images/w3c.png" /></a> + <a href="<!--#echo var="relroot" -->"><span>Markup Validation Service</span></a> + </h1> + <p id="tagline">Check the markup (HTML, XHTML) of Web documents</p> </div> |