How to integrate HTML pages into WordPress?

I have a page in HTML(index.html), and a folders named images, css, js that used in it.

Now i have to do this in WordPress. Is there any plug in to convert Html to WordPress or any other way to do this in WordPress? Please help me.. i’m a beginner in WordPress.

Related posts

Leave a Reply

5 comments

  1. I am not sure of a direct way to implement a HTML page into a WordPress theme, but if you have made header and footer files for your website, then all you need to do is convert them to make them WordPress compatible.

    You should refer to the codex.

    You can also go for any of the WordPress frameworks listed here.

    A WordPress theme is easy to understand if you know basic PHP. It has a set of files like

    • header.php // header file
    • footer.php // footer file
    • index.php // the index file
    • page.php // for your WP pages
    • single.php // for your WP posts
    • and some other files

    Go through the codex and it shouldn’t take long to get the hang of it.