<!doctype html>
if (!Modernizr.svg) {
$(".logo img").attr("src", "images/logo.png");
}
<header>
<nav>...</nav>
</header>
<section>
<article>...</article>
</section>
<footer>...</footer>
<script src="..."></script>
<script>
...
</script>
</body>
</html>
O que é o DOM Tom?
(Document Object Model) é uma especificação da W3C, independente de plataforma e linguagem, onde pode-se dinamicamente alterar e editar a estrutura, conteúdo e estilo de um documento eletrônico.
body div.selector ul li a {
...
}

.selector{
...
}
.selector-alt{
...
}
<!--[if IE 7]--> <html class="ie7" > <![endif]-->
<!--[if IE 8]--> <html class="ie8" > <![endif]-->
...
.selector {
/* Positioning */
position: absolute;
z-index: 10;
top: 0;
right: 0;
/* Display & Box Model */
display: inline-block;
overflow: hidden;
...
/* Color */
background: #000;
color: #fff;
/* Text */
font-family: sans-serif;
font-size: 16px;
...
/* Other */
cursor: pointer;
}
