Here is the code with comments:
```html
<!-- Table of ski resorts in New England -->
<table>
<!-- Table headers -->
<thead>
<tr>
<th>Ski Resort</th>
<th>Conditions</th>
<th>Lifts</th>
<!-- ... other columns ... -->
</tr>
</thead>
<tbody>
<!-- Ski resort data rows -->
<tr>
<!-- New Hampshire resorts -->
<td>Baker</td>
<td>—</td>
<td>0 / 5</td>
<!-- ... other rows for NH resorts ... -->
</tr>
<!-- Maine resorts -->
<tr>
<td>Sugarloaf</td>
<td>powder-packed powder</td>
<td>126 / 176</td>
</tr>
<tr>
<td>Sunday River</td>
<td>machine groomed-variable conditions</td>
<td>135 / 138</td>
</tr>
<!-- ... other rows for ME resorts ... -->
</tbody>
</table>
<!-- Author section with bio and profile image -->
<div class="o-author-single has-avatar">
<!-- Header with author info -->
<header class="m-author-card">
<!-- Profile image -->
<div class="a-image a-image--square m-author-card__image">
<img src="https://www.boston.com/wp-content/u...dc45a689a-rotated-1-6707dc4f72826-242x242.jpg" alt="Profile image for Kristi Palma">
</div>
<!-- Author bio and title -->
<div class="m-author-card__text">
<h3 class="m-author-card__title">Kristi Palma</h3>
<span class="m-author-card__subtitle">Travel writer</span>
</div>
</header>
<!-- Author info section with bio -->
<section class="author-info" readability="3.8260869565217">
<div class="m-author__section" readability="12.434782608696">
<p>Kristi Palma is the travel writer for Boston.com, focusing on the six New England states. She covers airlines, hotels, and things to do across Boston and New England. She is the author of Scenic Six, a weekly travel newsletter.</p>
</div>
</section>
<!-- Call-to-action button -->
<div class="m-block m-generic-cta
m-generic-cta--post-content m-generic-cta--dark m-generic-cta--homepage m-generic-cta--email-signup m-generic-cta-block-style--default
t-amp__generic-cta">
<div class="m-generic-cta__wrap" readability="6">
<h3 class="m-generic-cta__title">Sign up for Scenic Six</h3>
<p class="m-generic-cta__subtitle">Navigate the endless possibilities of New England travel with Boston.com.</p>
</div>
</div>
<!-- Outbrain container -->
<aside id="bdc-outbrain-34739343" class="bdc-outbrain-container">
<!-- Outbrain content -->
<!-- ... outbrain content ... -->
</aside>
</div>
```
Note that I've omitted some of the details for brevity, but this should give you a good idea of the structure and organization of the code.
```html
<!-- Table of ski resorts in New England -->
<table>
<!-- Table headers -->
<thead>
<tr>
<th>Ski Resort</th>
<th>Conditions</th>
<th>Lifts</th>
<!-- ... other columns ... -->
</tr>
</thead>
<tbody>
<!-- Ski resort data rows -->
<tr>
<!-- New Hampshire resorts -->
<td>Baker</td>
<td>—</td>
<td>0 / 5</td>
<!-- ... other rows for NH resorts ... -->
</tr>
<!-- Maine resorts -->
<tr>
<td>Sugarloaf</td>
<td>powder-packed powder</td>
<td>126 / 176</td>
</tr>
<tr>
<td>Sunday River</td>
<td>machine groomed-variable conditions</td>
<td>135 / 138</td>
</tr>
<!-- ... other rows for ME resorts ... -->
</tbody>
</table>
<!-- Author section with bio and profile image -->
<div class="o-author-single has-avatar">
<!-- Header with author info -->
<header class="m-author-card">
<!-- Profile image -->
<div class="a-image a-image--square m-author-card__image">
<img src="https://www.boston.com/wp-content/u...dc45a689a-rotated-1-6707dc4f72826-242x242.jpg" alt="Profile image for Kristi Palma">
</div>
<!-- Author bio and title -->
<div class="m-author-card__text">
<h3 class="m-author-card__title">Kristi Palma</h3>
<span class="m-author-card__subtitle">Travel writer</span>
</div>
</header>
<!-- Author info section with bio -->
<section class="author-info" readability="3.8260869565217">
<div class="m-author__section" readability="12.434782608696">
<p>Kristi Palma is the travel writer for Boston.com, focusing on the six New England states. She covers airlines, hotels, and things to do across Boston and New England. She is the author of Scenic Six, a weekly travel newsletter.</p>
</div>
</section>
<!-- Call-to-action button -->
<div class="m-block m-generic-cta
m-generic-cta--post-content m-generic-cta--dark m-generic-cta--homepage m-generic-cta--email-signup m-generic-cta-block-style--default
t-amp__generic-cta">
<div class="m-generic-cta__wrap" readability="6">
<h3 class="m-generic-cta__title">Sign up for Scenic Six</h3>
<p class="m-generic-cta__subtitle">Navigate the endless possibilities of New England travel with Boston.com.</p>
</div>
</div>
<!-- Outbrain container -->
<aside id="bdc-outbrain-34739343" class="bdc-outbrain-container">
<!-- Outbrain content -->
<!-- ... outbrain content ... -->
</aside>
</div>
```
Note that I've omitted some of the details for brevity, but this should give you a good idea of the structure and organization of the code.