Hi please if anyone can help I am very new to HTML and have recently created a website that I have adapted from a template in dreamweaver and there is code already in the HTML for the contact page I have tried and tried and just cannot figure out how to set it into the active. below is what I have so far for the page.
<section id="contact-text" class="inactive">
<div class="col-sm-12 col-md-12">
<div class="row">
<div class="col-sm-12 col-md-12"><h2>Contact</h2></div>
<div class="clearfix"></div>
</div>
<div class="row">
<div class="col-sm-6 col-md-6">
<div id="map-canvas"></div>
<p></p>
</div>
<div class="col-sm-6 col-md-6">
<form action="#" method="post">
<div class="form-group">
<!--<label for="contact_name">Name:</label>-->
<input type="text" id="contact_name" class="form-control" placeholder="Name" />
</div>
<div class="form-group">
<!--<label for="contact_email">Email:</label>-->
<input type="text" id="contact_email" class="form-control" placeholder="Email Address" />
</div>
<div class="form-group">
<!--<label for="contact_message">Message:</label>-->
<textarea id="contact_message" class="form-control" rows="7" placeholder="Write a message"></textarea>
</div>
<button type="submit" class="btn btn-primary">Send</button>
</form>