diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-01-16 20:36:11 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-01-16 20:36:11 +0100 |
commit | fcfbd4a3b79b58ca62a612c66734151c44b26a43 (patch) | |
tree | 1d04f7618a050328b0d793dc630e26fe2f9eb7ee /index.html | |
parent | 0d0a9610de4eb403494e24efbaa8a44ceeb8f4da (diff) |
Fix HTML5 issues reported by W3C validator
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -1,9 +1,9 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Dillo Website</title> - <style type="text/css"> + <style> body { background: white; line-height: 1.5; @@ -34,7 +34,7 @@ h3 { <body> <div class="main"> <div class="github-button"> - <img class="github-logo" src="img/gh.png"/> + <img alt="GitHub logo" class="github-logo" src="img/gh.png"> <a href="https://github.com/dillo-browser/dillo">View on GitHub</a> </div> <h1>Welcome to the Dillo Website</h1> @@ -52,17 +52,17 @@ h3 { <li>Is free software licensed with the GPLv3.</li> <li>Helps authors to comply with web standards by using the <a href="old/help/bug_meter.html">bug meter</a> - <img style="vertical-align:middle" src="img/bugmeter.png" />.</li> + <img alt="Bugmeter icon" style="vertical-align:middle" src="img/bugmeter.png">.</li> </ul> <h2>Screenshots</h2> - <a href="img/plan9.png"><img class="shot" src="img/mini-plan9.png"/></a> - <a href="img/armadillo.png"><img class="shot" src="img/mini-armadillo.png"/></a> - <a href="img/suckless.png"><img class="shot" src="img/mini-suckless.png"/></a> - <a href="img/aaronsw.png"><img class="shot" src="img/mini-aaronsw.png"/></a> - <a href="img/hackernews.png"><img class="shot" src="img/mini-hackernews.png"/></a> - <a href="img/100r.png"><img class="shot" src="img/mini-100r.png"/></a> - <p align=right>...check <a href="old/screenshots/index.html">the archives</a> for more pictures.</p> + <a href="img/plan9.png"><img alt="Plan9 website" class="shot" src="img/mini-plan9.png"></a> + <a href="img/armadillo.png"><img alt="Armadillo Wikipedia page" class="shot" src="img/mini-armadillo.png"></a> + <a href="img/suckless.png"><img alt="Suckless website" class="shot" src="img/mini-suckless.png"></a> + <a href="img/aaronsw.png"><img alt="Aaron Swartz website" class="shot" src="img/mini-aaronsw.png"></a> + <a href="img/hackernews.png"><img alt="Hacker News website" class="shot" src="img/mini-hackernews.png"></a> + <a href="img/100r.png"><img alt="100 Rabbits website" class="shot" src="img/mini-100r.png"></a> + <p style="text-align:right">...check <a href="old/screenshots/index.html">the archives</a> for more pictures.</p> <h2>Project objectives</h2> <ul> <li>Lower the barrier of entry to the web.</li> |