How to Create Page Template
-
I wrote the following code for a page in HTML, CSS, and JavaScript. How do I transform this into a WordPress Page Template?
<html xmlns="https://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> </div> </body> </html>
How I can do so ? I am just a little bit confused that how i can add external CSS or JavaScript in wordpress as well as how i can edit header and footer in the page template.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to Create Page Template’ is closed to new replies.