HTML Section
<div class="features-section">
<div class="container">
<div class="row">
<div class="feat-heading text-center">
<h3>Features</h3>
</div>
<div class="col-md-3">
<div class="tabs">
<div class="icon-text-block text-center">
<a onmouseover="imgChange1()" href="#" class="icon-1">
<div class="icon-container icon-01" ></div>
</a>
<div class="text-container text-center">
<h5>Manage Registrations</h5>
<p>Check attendee list and ticket sales revenue upfront in your dashboard. Offer Discounts and more.</p>
</div>
</div>
... (Additional similar sections with different icons)
</div>
</div>
<div class="col-md-6 text-center">
<div class="image-tabs">
<div class="icon-01-image tab_content" id="tab1"> <img class="img-responsive" src="images/smart-registration-management.png" width="555" height="450" /> </div>
... (Further image tabs for other icons)
</div>
</div>
<div class="col-md-3">
<div class="icon-text-block text-center"> <a onmouseover="imgChange4()" href="#" class="icon-4">
<div class="icon-container icon-04" ></div>
</a>
...
</div>
</div>
</div>
</div>
CSS Section
.features-section{width:100%; float:left; padding:80px 0;}
.feat-heading h3{ color:#683594; font-size:32px; padding-bottom:25px;}
... (CSS styles continued)
JS Section -> This is the Javascript section
<script type="text/javascript" >
...
// JavaScript functions for changing images based on icon hover
</script>