I have here my html code featuring two different sections that I need to make dynamic within Wordpress.
<section class="contact">
<h1>how it works</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Omnis, molestias facere nam esse voluptatum cupiditate recusandae deleniti neque quidem! Expedita necessitatibus saepe tempore corporis magnam ut impedit ea tempora quae.Select the products you wish to order. request a quote, fill out all the required fields and upload your artwork. Zazzoo will be in contact with you withing 24 hours to confirm your order.</p>
<div class="button">
<button type="button" class="btn btn-default">Contact us</button>
</div>
</section><!-- end of contact section -->
<section class="opportunity">
<div class="row">
<div class="col-lg-8 col-md-8 ideas">
<h2>turn your ideas into reality</h2>
<hr/><p>weretrerum dolor sit amet, consectetur adipisicing elit. Dolor laudantium porro natus quo, sit ex nemo, nostrum pariatur ipsum, hic, officiis facilis enim debitis? Doloremque sequi sed ex quae, eaque.</p>
</div>
<div class="col-lg-4 col-md-4 opportunitycolumn">
<h2>opportunity</h2>
<hr>
<br/>
<h3>Are you a designer?</h3>
<p>Send us your work and we will manage your print...</p>
</div>
</div>
</section>
What steps should I follow to transform the aforementioned code into a dynamic format suitable for use in Wordpress?