Structure

Template Structure

Becoming a super hero is a fairly straight All information within the main content area is nested within a body tag. The general template structure is pretty the same throughout the template. Here is the general structure of main page (index.html).process:

File Structure
<!----Sidebar Starts-->
<div class="wrapper">
    <div class="sidebar">
    </div>
</div>
<!----Sidebar Ends-->

<!----Content Starts-->
<div class="content">
    <div class="container">
    </div>
    <div class="container">
    </div>
    <div class="container">
    </div>
</div> 
<!----Content Ends-->
<!-- Footer Start -->
<div class="container-fluid">
</div>
<!-- Footer Ends-->

   

Last updated