How to convert HTML, CSS, Javascript code into WordPress -
i wrote following code page in html, css, , javascript. how transform wordpress page template?
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <link href="css/global.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="js/jquery-1.js"></script> <body> <div class="box1"> <div class="top1"></div> <!-- content start here --> <div id="m-container"> <h1>featured clients & partners</h1> <ul class="filterclients" style="float:left; clear:both; margin:0 0 0 0px; "> <li><a href="#" class="it">it</a></li> </ul> </div> <!-- content start here --> </div> </body> </html>
for creating wp template check below code & save template file name inside theme directory.
<?php /* template name: custom template */ get_header(); ?> <div class="box1"> <div class="top1"></div> <!-- content start here --> <div id="m-container"> <h1>featured clients & partners</h1> <ul class="filterclients" style="float:left; clear:both; margin:0 0 0 0px; "> <li><a href="#" class="it">it</a></li> </ul> </div> <!-- content start here --> </div> <?php get_footer(); ?>
Comments
Post a Comment