Fix 1 html validator error, a few warnings, and make the Wayland logo link to the main page. Did you know you're not supposed to put an <img> directly in a <body> in HTML 4.01 Strict?
--- architecture.html | 8 ++++---- building.html | 2 +- faq.html | 2 +- index.html | 2 +- screenshots.html | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/architecture.html b/architecture.html index 166f728..a16ac5d 100644 --- a/architecture.html +++ b/architecture.html @@ -8,7 +8,7 @@ </head> <body> -<h1><img src="wayland.png"></h1> +<h1><a href="/"><img src="wayland.png" alt="Wayland logo"></a></h1> <h2>Wayland Architecture</h2> @@ -17,7 +17,7 @@ different from X is to follow an event from the input device to the point where the change it affects appears on screen.</p> <p>This is where we are now with X:</p> -<img src="x-architecture.png"> +<p><img src="x-architecture.png" alt="X architecture diagram"></p> <ol> <li> @@ -95,7 +95,7 @@ point where the change it affects appears on screen.</p> the compositor: </p> -<img src="wayland-architecture.png"> +<p><img src="wayland-architecture.png" alt="Wayland architecture diagram"></p> <ol> <li> @@ -207,7 +207,7 @@ point where the change it affects appears on screen.</p> wayland handles presentation of the windows instead of KMS. </p> -<img src="x-on-wayland.png"> +<p><img src="x-on-wayland.png" alt="X on Wayland architecture diagram"></p> <!-- --> diff --git a/building.html b/building.html index ff36951..33fd5fb 100644 --- a/building.html +++ b/building.html @@ -8,7 +8,7 @@ </head> <body> -<h1><a href="/"><img src="wayland.png" alt="wayland logo"></a></h1> +<h1><a href="/"><img src="wayland.png" alt="Wayland logo"></a></h1> <p>The instructions below assume some familiarity with git and building and running experimental software. And be prepared that this diff --git a/faq.html b/faq.html index 2a0b31d..48b39fd 100644 --- a/faq.html +++ b/faq.html @@ -9,7 +9,7 @@ </head> <body> -<h1><img src="wayland.png"></h1> +<h1><a href="/"><img src="wayland.png" alt="Wayland logo"></a></h1> <h2>Wayland FAQ</h2> diff --git a/index.html b/index.html index 926e030..c1f1cf3 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,7 @@ </head> <body> -<h1><img src="wayland.png"></h1> +<h1><img src="wayland.png" alt="Wayland logo"></h1> <h2>Wayland</h2> diff --git a/screenshots.html b/screenshots.html index ce167d4..6414391 100644 --- a/screenshots.html +++ b/screenshots.html @@ -8,9 +8,9 @@ </head> <body> -<h1><img src="wayland.png"></h1> +<h1><a href="/"><img src="wayland.png" alt="Wayland logo"></a></h1> -<h2>Screenshots</h1> +<h2>Screenshots</h2> <p>Wayland demos:</p> -- 1.7.1 _______________________________________________ wayland-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/wayland-devel
