You can convert your html pages to wordpress pages by using template pages for your
each menus.Before that create files name header.php,index.php,sidebar.php,footer.php
,style.css in your theme folder.Then follow the below steps:
1. Include all the contents of your home.html upto your menu creation like this in your
header.php:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Course</title>
</head>
<body>
<div id="wrapper">
<div class="w1">
<div class="w2">
<!-- header -->
<header id="header">
<div class="line"></div>
<!-- logo -->
<h1 class="logo"><a href="#">Company Logo</a></h1>
<!-- main nav -->
<nav id="nav">
<!--**replace your menu listings by the given below codes**-->
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</nav>
<div class="clear"></div>
</header>
<?php wp_head(); ?>
2. In index.php, include the body contents of home.html
in between the below codes:
<?php
/**
* Template Name: home
*
* Selectable from a dropdown menu on the edit page screen.
*/
?>
<?php get_header(); ?>
//body contents of home page
<?php get_footer(); ?>
3.Likewise, you can include as much menu you want.Just by changing like this for about
us:
<?php
/**
* Template Name: aboutus
*
* Selectable from a dropdown menu on the edit page screen.
*/
?>
<?php get_header(); ?>
//body contents of aboutus page
<?php get_footer(); ?>
4. If you have any footer contents(contents needed to display at the bottom of all
pages).Then include the contents in footer.php.If no contents is there,then
also simply create a file named footer.php.
5. Include the side contents to sidebar.php(contents to be displayed in right side of
the page).If no side contents are there.Then,simply create sidebar.php.
5. style.css,containing the css for all pages.
6.After creating all html files to .php files.Open the admin dashboard of your website.
In that open,Pages->Add new.In Add New Page,Enter the menu name(Home) in title and in
right side,click the Template dropdown and select the template name(home) and click
Publish button.
7.Likewise,create pages for all menus by giving title and selecting template name from
the template dropdown and click publish button after selecting.
8.Then,open Appearance->Menus.Then Menus page will open,in that on left side corner,you
will see Pages tag,click view all and check all the pages you want to display as
menus in your website and click Add to Menu button.
9.Then,the selected pages will be shown on right side,in bottom you will see Save Menu
button,click it.
8.After finishing all,on top left corner click on the website name and see the website
with the following menus and their corresponding pages.