<?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>klevismiho.com &#187; Web Design</title>
	<atom:link href="http://klevismiho.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://klevismiho.com</link>
	<description>Blog of an Albanian Web Developer</description>
	<lastBuildDate>Tue, 06 Dec 2011 15:41:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Steps I do to create a website for myself without a CMS.</title>
		<link>http://klevismiho.com/steps-i-do-to-create-a-website-for-myself-without-a-cms/</link>
		<comments>http://klevismiho.com/steps-i-do-to-create-a-website-for-myself-without-a-cms/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 15:28:43 +0000</pubDate>
		<dc:creator>klevisi</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://klevismiho.com/?p=87</guid>
		<description><![CDATA[1. Brainstorming The first thing I do is a brainstorming session. I think of the features the website will have, write them down. Then I ask friends, they could have good ideas too. 2. Sketching I get a piece of an A4 paper, a pencil, and begin to sketch the layout for the website. Sometimes [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1. Brainstorming</strong><br />
The first thing I do is a brainstorming session.<br />
I think of the features the website will have, write them down. Then I ask friends, they could have good ideas too.</p>
<p><strong>2. Sketching</strong><br />
I get a piece of an A4 paper, a pencil, and begin to sketch the layout for the website.<br />
Sometimes I use a graphic tablet to do the sketch on photoshop, but I really prefer paper and pencil.</p>
<p><strong>3. Photoshoping</strong><br />
From the ugly, curvy lines paper sketch, I transform it into a clean image using photoshop.<br />
Applying colors. Colors are not used at a random order. I&#8217;ll use a color wheel, and with the wheels rules I stick to a color pattern.</p>
<p><strong>4. Slicing (or not)</strong><br />
With photoshop I slice the image to fit my needs. I try to slice as few images as possible.<br />
To say the truth, slicing looks outdated to me.</p>
<p><strong>5. CSS/XHTML</strong><br />
I do a paralel work on an external css file, and the main index file. I create the layout which looks like the image in photoshop.</p>
<p><strong>6. Lorem ipsum</strong><br />
I add lorem ipsum text to the content area.</p>
<p><strong>8. Fix details</strong><br />
A little padding here, a little padding there, the link color is not right. Those kind of things I do at the end until I&#8217;m really satisfied.</p>
]]></content:encoded>
			<wfw:commentRss>http://klevismiho.com/steps-i-do-to-create-a-website-for-myself-without-a-cms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DOCTYPE!&#8217;s</title>
		<link>http://klevismiho.com/doctypes/</link>
		<comments>http://klevismiho.com/doctypes/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 08:27:51 +0000</pubDate>
		<dc:creator>klevisi</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://klevismiho.com/en/?p=34</guid>
		<description><![CDATA[HTML 4.01 Strict, Transitional, Frameset &#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01//EN&#34; &#34;http://www.w3.org/TR/html4/strict.dtd&#34;&#62; &#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01 Transitional//EN&#34; &#34;http://www.w3.org/TR/html4/loose.dtd&#34;&#62; &#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01 Frameset//EN&#34; &#34;http://www.w3.org/TR/html4/frameset.dtd&#34;&#62; XHTML 1.0 Strict, Transitional, Frameset &#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Strict//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#34;&#62; &#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62; &#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>HTML 4.01 Strict, Transitional, Frameset</strong></h2>
<pre class="brush: html">
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot;
&quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;

&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;
&quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;

&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Frameset//EN&quot;
&quot;http://www.w3.org/TR/html4/frameset.dtd&quot;&gt;
</pre>
<h2><strong>XHTML 1.0 Strict, Transitional, Frameset</strong></h2>
<pre class="brush: html">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;
&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;

&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;
&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;

&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Frameset//EN&quot;
&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&quot;&gt;
</pre>
<h2><strong>XHTML 1.1 DTD</strong></h2>
<pre class="brush: html">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.1//EN&quot;
&quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&quot;&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://klevismiho.com/doctypes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make a linkable div</title>
		<link>http://klevismiho.com/make-a-linkable-div/</link>
		<comments>http://klevismiho.com/make-a-linkable-div/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 12:20:49 +0000</pubDate>
		<dc:creator>klevisi</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://klevismiho.com/en/?p=23</guid>
		<description><![CDATA[A div can be made into a link very simple using javascript using this code: &#60;div onclick=&#34;location.href=&#039;http://www.domain.com&#039;;&#34; style=&#34;cursor:pointer;&#34;&#62;CLICK ME&#60;/div&#62; Here everything that is inside this div will be clickable and will poing to http://www.domain.com. Using cursor: pointer dhe mause will change when it is over the div, just like in a real link.]]></description>
			<content:encoded><![CDATA[<p>A div can be made into a link very simple using javascript using this code:</p>
<pre class="brush: html">

&lt;div onclick=&quot;location.href=&#039;http://www.domain.com&#039;;&quot; style=&quot;cursor:pointer;&quot;&gt;CLICK ME&lt;/div&gt;
</pre>
<p>Here everything that is inside this div will be clickable and will poing to http://www.domain.com.<br />
Using cursor: pointer dhe mause will change when it is over the div, just like in a real link.</p>
]]></content:encoded>
			<wfw:commentRss>http://klevismiho.com/make-a-linkable-div/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

