| Привет кто знает помогите подредактировать код чтобы он был валидный и при этом картинки оставалсь на своих местах cейчас пишет : The align attribute on the img element is obsolete. Use CSS instead. убрал в img align="top" код стал валидный но картинка logo.png съехала вниз что не оч смотрится
Код HTML: <!doctype html> <html> <head> <title>Сейчас Вы будете перенаправлены, пожалуйста, ждите</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style>
body {background:#ffff;}
a img {border:0;}
.APPLY_box {color:#000000;border:1px solid #c5d6f1;background:#fff;width:500px;margin:100px auto 100px auto;border:1px solid #ccc;padding:50px;text-align:center;font-family:Tahoma,Arial,Vardana;font-size:13px;-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;}
.APPLY_box a {color:#000000;text-decoration:none;}
.APPLY_box a:hover {text-decoration:underline;}
.APPLY_box img.bonus {height: 59px; width: 94px; margin-top:10px;}
</style> </head> <body> <div class="APPLY_box" > <p><a href="https://anketa.ru/">Сейчас Вы будете перенаправлены, пожалуйста, ждите</a></p> <a href="https://anketa.ru/" style="text-decoration: none;"> <img src="/logo.png" alt="" style="margin-top:0px;" align="top"/> <img src="/img/load.gif" alt="загрузка" style="margin-top:20px;" align="top"/> <img src="/img/lime.png" alt="" class="bonus" /> </a> <br/><br/> <p><a href="https://anketa.ru/">Если не произошло <span id="seconds">3</span> секунд, нажмите здесь</a></p> </div> <script>
function redirectTimeOut(s) {
document.getElementById('seconds').innerHTML = s;
if (s > 0) {
setTimeout("redirectTimeOut(" + (--s) + ");", 1000);
} else {
window.location.href = 'https://anketa.ru/';
}
}
redirectTimeOut(30);
</script> </body> </html> Последний раз редактировалось net8; 25.02.2015 в 18:53. |