diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2013-09-13 14:11:58 -0400 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2013-09-13 14:11:58 -0400 |
commit | 61e544ed7019414be08c77d2d654e4bcbb6a704a (patch) | |
tree | d6062a2b8b9fc2751642ed263cc3980c71dda57c /www | |
parent | 4dd38604c0110ff7726c94bc9533686d97af48cf (diff) | |
download | html5ks-61e544ed7019414be08c77d2d654e4bcbb6a704a.tar.xz html5ks-61e544ed7019414be08c77d2d654e4bcbb6a704a.zip |
fix html to validate
Diffstat (limited to 'www')
-rw-r--r-- | www/css/index.css | 2 | ||||
-rw-r--r-- | www/index.html | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/www/css/index.css b/www/css/index.css index 3790ee8..2768d76 100644 --- a/www/css/index.css +++ b/www/css/index.css @@ -56,7 +56,7 @@ html.no-js #warn-container { z-index: 100; } html.no-js #warn li { display: none; } -html.js #warn noscript { display: none; } +html.js #warn li#js { display: none; } #warn li#ie { display: none; } html.video #warn li#video { display: none; } html.audio #warn li#audio { display: none; } diff --git a/www/index.html b/www/index.html index d4eb62a..721a803 100644 --- a/www/index.html +++ b/www/index.html @@ -32,7 +32,7 @@ <div id="warn"> <h2>We use a lot of new features in this; your browser seems to have some issues...</h2> <ul id="warns"> - <noscript><li id="js">It doesn't seem to have JavaScript enabled. This site doesn't work at all without it. Really. <a href="http://enable-javascript.com">Don't know how to enable JS?</a></li></noscript> + <li id="js">It doesn't seem to have JavaScript enabled. This site doesn't work at all without it. Really. <a href="http://enable-javascript.com">Don't know how to enable JS?</a></li> <li id="ie">You're using Internet Explorer. Please upgrade to any other browser. <a href="//getfirefox.com">Firefox</a> and <a href="//google.com/chrome">Chrome</a> are both fine options. Nothing will work in IE. I promise.</li> <li id="video">It doesn't seem to support <a href="https://en.wikipedia.org/wiki/HTML5_video">HTML5 video</a>, which means that you won't be able to see any of the videos (obviously). Unless stated below, though, transitions should still work. <a href="http://caniuse.com/#feat=video">You should strongly consider upgrading.</a></li> <li id="audio">It doesn't seem to support <a href="https://en.wikipedia.org/wiki/HTML5_audio">HTML5 audio</a>, which means you won't be able to hear any of the amazing music. <a href="http://caniuse.com/#feat=audio">You should strongly consider upgrading.</a></li> @@ -50,16 +50,16 @@ <div id="window" style="display: none;"> <div id="who"></div> <div id="say" class="say"></div> - <img id="ctc" src="dump/ui/ctc.png" style="display: none"> + <img id="ctc" src="dump/ui/ctc.png" style="display: none" alt="Click to continue..."> </div> <div id="nvl" style="display: none;"> <div id="nvlsay" class="say"></div> - <img id="nvlctc" src="dump/ui/ctc.png"> + <img id="nvlctc" src="dump/ui/ctc.png" alt="Click to continue..."> </div> <div id="choices" class="centered"></div> <div id="centered" class="centered say"></div> - <img class="status" id="auto" src="dump/ui/sd-auto.png"> - <img class="status" id="skip" src="dump/ui/sd-skip.png"> + <img class="status" id="auto" src="dump/ui/sd-auto.png" alt="Auto"> + <img class="status" id="skip" src="dump/ui/sd-skip.png" alt="Skip"> <div id="main-menu" style="display: none;"> <div id="main-menu-buttons" style="top: 377px; position: absolute; left: 81px;"> <div id="start" class="button main_menu_start disabled"></div> @@ -86,10 +86,10 @@ <label><input type="range" min="0.0" max="1.0" step="0.001" class="option" id="autoModeDelay"> <span class="tr config_afmspeed_label"></span></label> <label><input type="range" min="0.0" max="1.0" step="0.001" class="option" id="musicVolume"> <span class="tr config_musicvol_label"></span></label> - <label><input type="range" min="0.0" max="1.0" step="0.001" class="option" id="soundVolume"> <span class="tr config_sfxvol_label"></span> <span id="test-sound" class="button config_sfxtest_label"><img src="dump/ui/bt-musicplay.png"></span></label> + <label><input type="range" min="0.0" max="1.0" step="0.001" class="option" id="soundVolume"> <span class="tr config_sfxvol_label"></span> <span id="test-sound" class="button config_sfxtest_label"><img src="dump/ui/bt-musicplay.png" alt="Play"></span></label> </div> <div id="return" class="button" style="position: absolute; bottom: 15px; right: 20px;"> - <img src="dump/ui/bt-return.png"> + <img src="dump/ui/bt-return.png" alt=""> Return </div> </div> |