<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Official Wall of Mark Keeler &#187; landing page</title>
	<atom:link href="http://www.markkeeler.com/tag/landing-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markkeeler.com</link>
	<description>A Place To Find Ways to Create what you want through Social Networking</description>
	<lastBuildDate>Mon, 15 Mar 2010 04:04:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Create a Free Website in Less Than 5 Minutes</title>
		<link>http://www.markkeeler.com/create-a-free-website-in-less-than-5-minutes/</link>
		<comments>http://www.markkeeler.com/create-a-free-website-in-less-than-5-minutes/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 18:30:31 +0000</pubDate>
		<dc:creator>Mark Keeler</dc:creator>
				<category><![CDATA[Website building tips]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[landing page]]></category>
		<category><![CDATA[website building]]></category>

		<guid isPermaLink="false">http://www.markkeeler.com/?p=401</guid>
		<description><![CDATA[A friend of mine informed me of a great free website building tool.  Weebly!  It will host the site and help you build a real functioning website with no programming skills. Click on this on screen video to see how I made a simple website in approximately 4 minutes. Here are the steps: Website building [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine informed me of a great free website building tool.  Weebly!  It will host the site and help you build a real functioning website with no programming skills.</p>
<p>Click on this on screen video to see how I made a simple website in approximately 4 minutes.</p>
<p>Here are the steps:</p>
<p><a href="http://screencast.com/t/aaSbpvxqE">Website building video</a></p>
<ol>
<li>Go to <a href="http://www.weebly.com">Weebly.com<br />
</a></li>
<li>Create an account</li>
<li>Create your website</li>
</ol>
<p>It&#8217;s really this simple.  You can make a blog, landing page, start a small business, etc.  It&#8217;s a great tool to learn how to design a website without knowing how to program.  It&#8217;s a great site to use as inbound links to your main business site for &#8216;SEO.  A link is a link!  Make sure the link is relevant.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markkeeler.com/create-a-free-website-in-less-than-5-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add a Custom WordPress Template</title>
		<link>http://www.markkeeler.com/how-to-add-a-custom-wordpress-template/</link>
		<comments>http://www.markkeeler.com/how-to-add-a-custom-wordpress-template/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 18:15:12 +0000</pubDate>
		<dc:creator>Mark Keeler</dc:creator>
				<category><![CDATA[Website building tips]]></category>
		<category><![CDATA[kompozer]]></category>
		<category><![CDATA[landing page]]></category>
		<category><![CDATA[sales copy]]></category>
		<category><![CDATA[squeeze page]]></category>

		<guid isPermaLink="false">http://www.markkeeler.com/?p=381</guid>
		<description><![CDATA[I was doing some searching on Google trying to figure out how to make a custom WordPress template without doing a whole lot of coding.  I came across this simple peice of coding that works like magic. The first step is to create your desired page in HTML, I use Kompozer an HTML editor since [...]]]></description>
			<content:encoded><![CDATA[<p>I was doing some searching on Google trying to figure out how to make a custom WordPress template without doing a whole lot of coding.  I came across this simple peice of coding that works like magic.</p>
<p>The first step is to create your desired page in HTML, I use <a href="http://kompozer.net/">Kompozer</a> an HTML editor since I am somewhat geek impaired and can’t actually write any code,  I use a free editor called <a href="http://kompozer.net/">Kompozer</a>.  In this case we are not going to add content to this page from within the dashboard so add all your meta tags for SEO.   It will need a title, description, keywords, basically everything a regular static HTML page would need. After you create your new page you need to create a new WordPress page template. This can be done either in a text editor and FTP uploaded to your site or, since it is a small simple file you can create it directly in your hosting account’s control panel.</p>
<p>To create the new page template paste your HTML code into a text editor like Notepad, then paste the following PHP code directly above it like this:</p>
<table style="width: 298px; height: 74px;" border="0">
<tbody>
<tr>
<td style="border: 1px solid #480cf2; background-color: #cfccc8;" align="center">&lt;?php /* Template Name: New Template Name<br />
*/ ?&gt;</p>
<p style="text-align: left;">&lt;html&gt;<br />
Your HTML Code Here</td>
</tr>
</tbody>
</table>
<p>Copy just the 2 lines of code above the &lt;html&gt; tag and paste it into your new template and change New Template Name to a name of your choosing.   Save the new page template as a .php file.   Something like test.php, and upload it to your hosting account in the template folder of your current WordPress theme.   Don’t call your new template page.php!   There is already one called that.   Double check the name so you do not over write any existing templates or pages.</p>
<p>You can look at your current page.php template to get clues as to what you may want to include in your custom page template like the header and footer or possibly the sidebar.  The idea of a template is to make it look unique.  I highly reccomend staying away from sidebars and headers unless they are uique to this page.</p>
<p>The directory to place the new page template in is blog/wp-content/themes/<span style="color: #000000;"><span style="color: #ff0000;">default</span>.</span> Where <span style="color: #ff0000;">default</span> is the currently active theme.</p>
<p>Since you are placing this new WordPress page template into a specific themes folder it will only be available when that specific theme is active. If you change themes you will need to place a copy of it into the currently active theme.</p>
<p>To create a new page template within your hosting accounts control panel. Browse to your blogs main directory, wp-content, themes, then click on your currently active theme. Create a new PHP file, call it whatever you wish, like above front.php, paste your HTML code and then the PHP code directly above <span style="font-size: small;">it and save. </span></p>
<p><span style="font-family: arial black,avant garde;"><span style="font-size: large;">Creating Your New Custom Page</span></span></p>
<p>Login to your WordPress Dashboard, click Write then Write Page. Since we didn’t specify in the custom page template to get the content, or any other information for that matter, all we need to do here is create a new page and specify the page template to use.</p>
<p>Type a title in the title box, then look over to the right and click the Page Template drop down box, choose your new WordPress page template and click publish</p>
<p><span style="font-family: arial black,avant garde;"><span style="font-size: large;">Squeeze Page</span></span></p>
<p>This custom page is a great starting point to make a landing or squeeze page.</p>
<p><a href="http://kompozer.net/">Kompozer</a> is an excellent WYSIWYG editor.  I don&#8217;t know code.  I really on my uncanny ability to copy what other people have created!  You can add your own sales copy in the normal mode and it will code it for you.  Just cut and paste the auto repsonder code where you desire it and now you have a custom landing page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markkeeler.com/how-to-add-a-custom-wordpress-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
