Operation Sheet 2.4
Operation Sheet 2.4
1. Create a new php file using your Dreamweaver and save it as main.php inside the folder you created.
2. Insert the line of code below the <meta charset="utf-8"> tag.
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="vendor/metisMenu/metisMenu.min.js"></script>
<script src="dist/js/customized.js"></script>
5. Insert the following html tags inside the <body> ….</body> tags.
6. Inserting the NavBar. Insert the following tags after the <!--start of wrapper -->
7. Inserting the NavBar Header. Insert the following tags after the <!--start NavBar -->.
<!-- Header -->
<div class="navbar-header">
<a class="navbar-brand" href="index.html">TVET Institute</a>
</div>
<!--end of header -->
8. Inserting the Right NavBar. Insert the following tags after the <!--end of header -->.
9. Inserting the ABOUT MENU. Insert the following tags after the <!-- start of the Right NavBar-->
10. Inserting the My Account and Logout Button. Insert the following tags after the <!-- end of About Menu-->
<!-- My Account Button -->
<li><a href="#"><span class="glyphicon glyphicon-user"></span> My Account</a></li>
11. Inserting the SideBar. Insert the following tags after the <!-- end of Right NavBar-->
12. Inserting SideBar menu with no dropdown. Insert the following tags after the <!-- start of Side Menu-->
13. Inserting SideBar menu with dropdown. Insert the following tags after the <!-- end of Sample 2 No Dropdown-->
14. Inserting SideBar menu with Multi- dropdown. Insert the following tags after the <!-- end of Menu with Dropdown-->
<!-- start of Menu with Multi Level Dropdown-->
<li>
<a href="#"><i class="fa fa-sitemap fa-fw"></i> Multi-Level Dropdown<span class="fa arrow"></span></a>
<ul class="nav nav-second-level">
<li>
<a href="#">Second Level Item</a>
</li>
<li>
<a href="#">Second Level Item</a>
</li>
<li>
<a href="#">Third Level <span class="fa arrow"></span></a>
</li>
</ul>
</li>
<!-- end of Menu with Multi Level Dropdown-->
15. Inserting the Page Content. Insert the following scripts after <!--end of NavBar -->
16. Collapsing the SideBar. Include the following scripts under <div class="navbar-header">