am totally new in HTML and Im wondering about the wrapper thing. Can you tell me why there is first "div id" and then in the subcode "div class="wrapper" ? Could I replace the id with class to have the same effect, and vice versa? I mean why is it that first comes and then ?
<header>
<div class="Wrapper">
<h1></h1>
<nav></nav>
</div>
</header>
<div **id**="heroImage">
<div **class**="Wrapper">
<h2></h2>
<a></a>
</div>
</div>
<div id="features">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div id="primaryContent">
<article></article>
</div>
<div id="secondaryContent">
<article></article>
<article></article>
</div>