Find a way to retrive data updated through metabox plugin to web page

So finally I found a way to do that.

Here is the code.

page-contact.php

 <!-- Contact Info -->
                    <div class="contact-info col-md-4 col-sm-4 margin-top-20 padding-left-20">
                        <label class="contact-label pull-left width-wide">Contact Info</label>

                         <p><strong>IT'S SHOWTIME TOWING</strong><br /><br /> 
                            <!--Phone: <a href="https://wordpress.stackexchange.com/questions/355497/tel:0450749863">0450749863</a><br /><br /> -->
                            Phone: <a href="https://wordpress.stackexchange.com/questions/355497/tel:0450749863"><?php echo get_post_meta( $post->ID, 'telNo', true );?></a><br /><br />
                            <!--Email: <a href="mailto:[email protected]">[email protected]</a><br /><br /> -->
                            Email: <a href="mailto:[email protected]"><?php echo get_post_meta($post->ID, "email" , true); ?></a><br /><br />
                            <strong>Hours of Operation</strong><br /><br /> 
                            <!--<a href="#">24/7</a><br /><br />-->
                            <a href="#"><?php echo get_post_meta($post->ID, "hourofOps" , true); ?></a><br /><br /> 
                            <strong>Terms And Conditions</strong> <a href="terms_conditions.html">Click Here</a>
                         </p>                    
                         </div><!-- // Contact Info -->

Hope this answer will helpful for a newcomer to the industry like me.