Skip to content

HTML Structure & Files

HTML Code


Every file have many comments within HTML code explaining it’s role part by part. Additionally every part of the code is marked by comments. Here is the example:

<div class="event_top">
    <div class="top_icon">
        <a href="/single-event.html">
            <i class="event_go_icon fas fa-plus"></i>
            <img src="img/events/event6.jpg" alt="images">
        </a>
        <p class="event_location"><span>New York</span> <i class="fas fa-map-marked-alt"></i></p>
    </div>
    <!--top_icon-->
</div>
<!--event_top-->

HTML Files


Here is the list of the HTML files used in this template

  • index-1.html used for Homepage style 1
  • index-2.html used for Homepage style 2
  • index-3.html used for Homepage style 3
  • index-4.html used for Homepage style 4
  • index-5.html used for Homepage style 5
  • about.html about-2.html used for about page (style 1 and 2)
  • events.html single-event.html used for events and single event page
  • contact.html used for contact page
  • blog.html blog-left.html used for blog/posts page with sidebar and left sidebar
  • single-blog single-blog-left used for single post page with sidebar and left sidebar

PHP Files


email.php used for contact form to send a message

Back to top