<?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>Ankit Virparia &#187; wireframing</title>
	<atom:link href="http://ankit.co/tag/wireframing/feed" rel="self" type="application/rss+xml" />
	<link>http://ankit.co</link>
	<description>A Programmer, Designer and Trainer</description>
	<lastBuildDate>Sun, 11 May 2014 04:15:47 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Nested table structure.</title>
		<link>http://ankit.co/tutorials/html/nested-table-structure?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nested-table-structure</link>
		<comments>http://ankit.co/tutorials/html/nested-table-structure#comments</comments>
		<pubDate>Sun, 19 May 2013 18:21:27 +0000</pubDate>
		<dc:creator><![CDATA[Ankit Virparia]]></dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[wireframing]]></category>

		<guid isPermaLink="false">http://ankit.co/?p=3478</guid>
		<description><![CDATA[<p>When the layout is a bit complex, it becomes difficult to create the entire layout using just one table. To create a layout as given below we need to use more than one table tag. Output: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16</p>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/nested-table-structure">Nested table structure.</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>When the layout is a bit complex, it becomes difficult to create the entire layout using just one table. To create a layout as given below we need to use more than one table tag. </p>
<pre class="brush: xml; title: ; notranslate">
&lt;html &gt;
&lt;head&gt;
&lt;title&gt;Nested table structure&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;table align=&quot;center&quot; border=&quot;1px&quot; width=&quot;900px&quot;&gt;
	&lt;tr height=&quot;150px&quot;&gt;
	&lt;td&gt;
	&lt;table border=&quot;1px&quot; width=&quot;100%&quot; height=&quot;100%&quot;&gt;
	&lt;tr&gt;
	&lt;td rowspan=&quot;2&quot; width=&quot;100px&quot;&gt; 1 &lt;/td&gt;
&lt;td colspan=&quot;2&quot;&gt; 2 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
	&lt;td&gt; 3 &lt;/td&gt;
&lt;td&gt; 4 &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;100px&quot;&gt;
	&lt;td&gt; 5 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;150px&quot;&gt;
	&lt;td&gt;
	&lt;table border=&quot;1px&quot; width=&quot;100%&quot; height=&quot;100%&quot;&gt;
	&lt;tr&gt;
	&lt;td width=&quot;300px&quot;&gt; 6 &lt;/td&gt;
&lt;td width=&quot;300px&quot;&gt; 7 &lt;/td&gt;
&lt;td width=&quot;300px&quot;&gt; 8 &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;450px&quot;&gt;
	&lt;td&gt;
	&lt;table border=&quot;1px&quot; width=&quot;100%&quot; height=&quot;100%&quot;&gt;
	&lt;tr&gt;
	&lt;td width=&quot;800px&quot; height=&quot;200px&quot;&gt; 9 &lt;/td&gt;
&lt;td width=&quot;100px&quot; rowspan=&quot;2&quot;&gt; 10 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
	&lt;td&gt;
	&lt;table width=&quot;100%&quot; height=&quot;100%&quot; border=&quot;1px&quot;&gt;
	&lt;tr&gt;
	&lt;td width=&quot;50%&quot; rowspan=&quot;3&quot;&gt; 11 &lt;/td&gt;
&lt;td colspan=&quot;2&quot;&gt; 12 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
	&lt;td rowspan=&quot;2&quot;&gt; 13 &lt;/td&gt;
&lt;td&gt; 14 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
	&lt;td&gt; 15 &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;50px&quot;&gt;
	&lt;td&gt; 16 &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><b>Output:</b></p>
<table align="center" border="1px" width="500px">
<tr height="150px">
<td>
<table border="1px" width="100%" height="150px">
<tr>
<td rowspan="2" width="100px"> 1 </td>
<td colspan="2"> 2 </td>
</tr>
<tr>
<td> 3 </td>
<td> 4 </td>
</tr>
</table>
</td>
</tr>
<tr height="50px">
<td> 5 </td>
</tr>
<tr height="150px">
<td>
<table border="1px" width="100%" height="150px">
<tr>
<td width="166px"> 6 </td>
<td width="166px"> 7 </td>
<td> 8 </td>
</tr>
</table>
</td>
</tr>
<tr height="250px">
<td>
<table border="1px" width="100%" height="100%">
<tr>
<td width="400px" height="200px"> 9 </td>
<td width="100px" rowspan="2"> 10 </td>
</tr>
<tr>
<td>
<table width="100%" height="100%" border="1px">
<tr>
<td width="50%" rowspan="3"> 11 </td>
<td colspan="2"> 12 </td>
</tr>
<tr>
<td rowspan="2"> 13 </td>
<td> 14 </td>
</tr>
<tr>
<td> 15 </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr height="50px">
<td> 16 </td>
</tr>
</table>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/nested-table-structure">Nested table structure.</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ankit.co/tutorials/html/nested-table-structure/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Div based layout example</title>
		<link>http://ankit.co/tutorials/html/div-based-layout-example?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=div-based-layout-example</link>
		<comments>http://ankit.co/tutorials/html/div-based-layout-example#comments</comments>
		<pubDate>Sun, 19 May 2013 17:59:13 +0000</pubDate>
		<dc:creator><![CDATA[Ankit Virparia]]></dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[wireframing]]></category>

		<guid isPermaLink="false">http://ankit.co/?p=3466</guid>
		<description><![CDATA[<p>In this tutorial we will consider two different layouts using div tag. Layout 1 Output: Layer 1 Layer 2 Layer 3 Layer 4 Layer 5 Layer 6 Layout 2 Output: Layer 1 Layer 2 Layer 3 Layer 4 Layer 5 Layer 6 Layer 7 Layer 8 Layer 9</p>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/div-based-layout-example">Div based layout example</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>In this tutorial we will consider two different layouts using div tag.</p>
<hr/>
<strong>Layout 1</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Div based layout example&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;div style=&quot;width:900px; background-color:black; &quot;&gt;	
&lt;div style=&quot;width:100px; height:100px; background-color:red; float:left;&quot;&gt;
	Layer 1
&lt;/div&gt;
&lt;div style=&quot;width:800px; height:100px; background-color:green; float:left;&quot;&gt;
	Layer 2
&lt;/div&gt;
&lt;div style=&quot;width:900px; height:200px; background-color:yellow; clear:left;&quot;&gt;
	Layer 3
&lt;/div&gt;
&lt;div style=&quot;width:700px; height:500px; background-color:blue; float:left;&quot;&gt;
	Layer 4
&lt;/div&gt;
&lt;div style=&quot;width:200px; height:500px; background-color:#9900CC; float:left;&quot;&gt;
	Layer 5
&lt;/div&gt;
&lt;div style=&quot;width:900px; height:200px; background-color:#39C; clear:left;&quot;&gt;
	Layer 6
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><b>Output:</b><br/></p>
<div style="width:500px; background-color:black; ">
<div style="width:100px; height:100px; background-color:red; float:left;">Layer 1</div>
<div style="width:400px; height:100px; background-color:green; float:left;">Layer 2</div>
<div style="width:500px; height:200px; background-color:yellow; clear:left;">Layer 3</div>
<div style="width:400px; height:300px; background-color:blue; float:left;">Layer 4</div>
<div style="width:100px; height:300px; background-color:#9900CC; float:left;">Layer 5</div>
<div style="width:500px; height:50px; background-color:#39C; clear:left;">Layer 6</div>
</div>
<hr/>
<strong>Layout 2</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Div based layout&lt; example/title&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;div style=&quot;width:900px; background-color:black; &quot;&gt;	
&lt;div style=&quot;width:100px; height:150px; background-color:red; float:left;&quot;&gt;
	Layer 1
&lt;/div&gt;
&lt;div style=&quot;width:800px; height:150px; background-color:green; float:left;&quot;&gt;
	Layer 2
&lt;/div&gt;
&lt;div style=&quot;width:900px; height:100px; background-color:yellow; clear:left;&quot;&gt;
	Layer 3
&lt;/div&gt;
&lt;div style=&quot;width:300px; height:200px; background-color:blue; float:left;&quot;&gt;
	Layer 4
&lt;/div&gt;
&lt;div style=&quot;width:300px; height:200px; background-color:#666666; float:left;&quot;&gt;
	Layer 5
&lt;/div&gt;
&lt;div style=&quot;width:300px; height:200px; background-color:#CC99CC; float:left;&quot;&gt;
	Layer 6
&lt;/div&gt;
&lt;div style=&quot;width:700px; height:500px; background-color:#00FF99; float:left;&quot;&gt;
	Layer 7
&lt;/div&gt;
&lt;div style=&quot;width:200px; height:500px; background-color:olive; float:left;&quot;&gt;
	Layer 8
&lt;/div&gt;
&lt;div style=&quot;width:900px; height:100px; background-color:#39C; clear:left;&quot;&gt;
	Layer 9
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><b>Output:</b></p>
<div style="width:500px; background-color:black; ">
<div style="width:100px; height:150px; background-color:red; float:left;">Layer 1</div>
<div style="width:400px; height:150px; background-color:green; float:left;">Layer 2</div>
<div style="width:500px; height:100px; background-color:yellow; clear:left;">Layer 3</div>
<div style="width:166px; height:200px; background-color:blue; float:left;">Layer 4</div>
<div style="width:166px; height:200px; background-color:#666666; float:left;">Layer 5</div>
<div style="width:168px; height:200px; background-color:#CC99CC; float:left;">Layer 6</div>
<div style="width:400px; height:500px; background-color:#00FF99; float:left;">Layer 7</div>
<div style="width:100px; height:500px; background-color:olive; float:left;">Layer 8</div>
<div style="width:500px; height:100px; background-color:#39C; clear:left;">Layer 9</div>
</div>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/div-based-layout-example">Div based layout example</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ankit.co/tutorials/html/div-based-layout-example/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML div tag</title>
		<link>http://ankit.co/tutorials/html/html-div-tag?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=html-div-tag</link>
		<comments>http://ankit.co/tutorials/html/html-div-tag#comments</comments>
		<pubDate>Sun, 19 May 2013 04:33:45 +0000</pubDate>
		<dc:creator><![CDATA[Ankit Virparia]]></dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[wireframing]]></category>

		<guid isPermaLink="false">http://ankit.co/?p=3439</guid>
		<description><![CDATA[<p>&#60;div&#62; tag is also used in implementing wireframing. Difference between &#60;div&#62; and &#60;table&#62; based layout Table Div To create one block using table based layout we require 3 tags, they are: one &#60;table&#62; tag to define a table , one &#60;tr&#62; to define one row in the table and one &#60;td&#62; to define one cell [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/html-div-tag">HTML div tag</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>&lt;div&gt; tag  is also used in implementing wireframing.
  </p>
<h3>Difference  between &lt;div&gt; and &lt;table&gt; based layout</h3>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tr>
<th width="404" valign="top"><strong>Table </strong></th>
<th width="404" valign="top">
<p align="center"><strong>Div</strong></p>
</th>
</tr>
<tr>
<td width="404" valign="top">
<p>To create one block using table based    layout we require 3 tags, they are: one &lt;table&gt; tag to define a table ,    one &lt;tr&gt; to define one row in the table and one &lt;td&gt; to define    one cell in that row.</p>
</td>
<td width="404" valign="top">
<p>To create one block using div based    layout we require just one tag and that is &lt;div&gt; tag to define the    block.</p>
</td>
</tr>
<tr>
<td width="404" valign="top">
<p>Number to tags required is more.</p>
</td>
<td width="404" valign="top">
<p>Number of tags required is less as    just one tag is required to create one block.</p>
</td>
</tr>
<tr>
<td width="404" valign="top">
<p>Browser parsing is slow.</p>
</td>
<td width="404" valign="top">
<p>Browser parsing is fast.</p>
</td>
</tr>
<tr>
<td width="404" valign="top">
<p>SEO (search engine optimization) rank    is low for table based layout.</p>
</td>
<td width="404" valign="top">
<p>SEO (search engine optimization) rank    is high for div based layout.</p>
</td>
</tr>
<tr>
<td width="404" valign="top">
<p>Table based layout is controlled by    its attributes.</p>
</td>
<td width="404" valign="top">
<p>Div based layout is controlled by CSS.</p>
</td>
</tr>
</table>
<p>By default when  we write a div tag it will not have any border which can separate one block  from the other. Also the browser will allocate space according to the content  of div.</p>
<p>
  In order to  create a layout using html div tag we need to make use of CSS (Cascading  Style Sheet) to assign width and height. We will make use of an inline CSS for  controlling div alignments. For further reference on CSS refer article &#8211; How to  write a CSS?
  </p>
<p>Consider the  below given program to create a div having the following CSS properties :  width, height, margin, background-color.</p>
<pre class="brush: xml; title: ; notranslate">
 &lt;div style=&quot;width:450px; margin:0px auto; height:100px; background-color:red;&quot;&gt;
This is a div.
&lt;/div&gt;
</pre>
<p><b>Output:</b></p>
<div style="width:450px; margin:0px auto; height:100px; background-color:red;">
This is a div.
</div>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/html-div-tag">HTML div tag</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ankit.co/tutorials/html/html-div-tag/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Table based website structure</title>
		<link>http://ankit.co/tutorials/html/table-based-website-structure?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=table-based-website-structure</link>
		<comments>http://ankit.co/tutorials/html/table-based-website-structure#comments</comments>
		<pubDate>Sun, 19 May 2013 04:09:43 +0000</pubDate>
		<dc:creator><![CDATA[Ankit Virparia]]></dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[wireframing]]></category>

		<guid isPermaLink="false">http://ankit.co/?p=3427</guid>
		<description><![CDATA[<p>As we have understood wireframing in the previous tutorial, now we are going to implement it it using &#60;table&#62; tag. Consider the layouts given below. Layout &#8211; 1 Output: 1 2 3 4 5 5 Above layout consist of four rows and two columns. Layout – 2 Output: 1 2 3 4 5 5 Layout [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/table-based-website-structure">Table based website structure</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>As we have  understood wireframing in the previous tutorial, now we are going to implement  it it using &lt;table&gt; tag.<br />
  Consider the  layouts given below.</p>
<p>
  <strong>Layout &#8211; 1</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;table border=&quot;1px&quot; align=&quot;center&quot; width=&quot;900px&quot;&gt;
&lt;tr height=&quot;100px&quot;&gt;
&lt;td width=&quot;200px&quot;&gt; 1 &lt;/td&gt;
&lt;td&gt; 2 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;50px&quot;&gt;
&lt;td colspan=&quot;2&quot;&gt;3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;400px&quot;&gt;
&lt;td width=&quot;200px&quot;&gt;4&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;100px&quot;&gt;
&lt;td colspan=&quot;2&quot;&gt;5&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
</pre>
</p>
<p><b>Output:</b></p>
<table border="1px" align="center" width="450px">
<tr height="100px">
<td width="100px"> 1 </td>
<td> 2 </td>
</tr>
<tr height="25px">
<td colspan="2">3</td>
</tr>
<tr height="200px">
<td width="100px">4</td>
<td>5</td>
</tr>
<tr height="50px">
<td colspan="2">5</td>
</tr>
</table>
<ul>
<li>Above  layout consist of four rows and two columns.</li>
</ul>
<p><br/></p>
<p><strong>Layout – 2</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;table border=&quot;1px&quot; align=&quot;center&quot; width=&quot;900px&quot;&gt;
&lt;tr height=&quot;100px&quot;&gt;
&lt;td width=&quot;200px&quot;&gt; 1 &lt;/td&gt;
&lt;td colspan=&quot;2&quot;&gt; 2 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;50px&quot;&gt;
&lt;td colspan=&quot;3&quot;&gt;3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;400px&quot;&gt;
&lt;td colspan=&quot;2&quot;&gt;4&lt;/td&gt;
&lt;td width=&quot;200px&quot;&gt;5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;100px&quot;&gt;
&lt;td colspan=&quot;3&quot;&gt;5&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
</pre>
<p><b>Output:</b></p>
<table border="1px" align="center" width="450px">
<tr height="100px">
<td width="100px"> 1 </td>
<td colspan="2"> 2 </td>
</tr>
<tr height="25px">
<td colspan="3">3</td>
</tr>
<tr height="200px">
<td colspan="2">4</td>
<td width="100px">5</td>
</tr>
<tr height="50px">
<td colspan="3">5</td>
</tr>
</table>
<p><strong>Layout – 3</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;table border=&quot;1px&quot; align=&quot;center&quot; width=&quot;900px&quot;&gt;
&lt;tr height=&quot;100px&quot;&gt;
&lt;td width=&quot;200px&quot;&gt; 1 &lt;/td&gt;
&lt;td colspan=&quot;4&quot;&gt; 2 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;50px&quot;&gt;
&lt;td colspan=&quot;5&quot;&gt; 3 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;200px&quot;&gt;
&lt;td colspan=&quot;2&quot;&gt; 4 &lt;/td&gt;
&lt;td width=&quot;300px&quot;&gt; 5 &lt;/td&gt;
&lt;td colspan=&quot;2&quot;&gt; 6 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;400px&quot;&gt;
&lt;td colspan=&quot;4&quot;&gt; 7 &lt;/td&gt;
&lt;td width=&quot;200px&quot;&gt; 8 &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td colspan=&quot;5&quot;&gt; 9 &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
</pre>
<p><b>Output:</b></p>
<table border="1px" align="center" width="450px">
<tr height="100px">
<td width="100px"> 1 </td>
<td colspan="4"> 2 </td>
</tr>
<tr height="25px">
<td colspan="5"> 3 </td>
</tr>
<tr height="150px">
<td colspan="2"> 4 </td>
<td width="150px"> 5 </td>
<td colspan="2"> 6 </td>
</tr>
<tr height="200px">
<td colspan="4"> 7 </td>
<td width="100px"> 8 </td>
</tr>
<tr>
<td colspan="5"> 9 </td>
</tr>
</table>
<p>Above layout  consist of 5 columns and 5 rows. We can assign width attribute to cell 1, cell  5 and cell 8 as these are the only cells which do not merge more than one cell.</p>
<h3>Rules to follow while designing Table based website structure having multi browser compatibility</h3>
<ul>
<li>We  should not assign width to a cell whose colspan attribute is assigned</li>
<li>We  should not assign height to a cell whose rowspan attribute is assigned</li>
<li>Width  can be assigned to &lt;table&gt; and &lt;td&gt; tags.</li>
<li>Height  can be assigned to &lt;table&gt; , &lt;tr&gt; and &lt;td&gt; tags.</li>
<li>If  we do not write some content in between &lt;td&gt; and &lt;/td&gt; then browser  will not allocate space for that cell.</li>
</ul>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/table-based-website-structure">Table based website structure</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ankit.co/tutorials/html/table-based-website-structure/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is website wireframing?</title>
		<link>http://ankit.co/tutorials/html/what-is-website-wireframing?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-is-website-wireframing</link>
		<comments>http://ankit.co/tutorials/html/what-is-website-wireframing#comments</comments>
		<pubDate>Sun, 19 May 2013 03:47:36 +0000</pubDate>
		<dc:creator><![CDATA[Ankit Virparia]]></dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[wireframing]]></category>

		<guid isPermaLink="false">http://ankit.co/?p=3417</guid>
		<description><![CDATA[<p>Wireframing is a method by which we decide the position of various modules in our website design. Example of different modules in a general website are login , search, menu, logo, footer etc.. It is also known as website template or website structure. Let us consider the below given template to understand: &#8220;What is website [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/what-is-website-wireframing">What is website wireframing?</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Wireframing is a  method by which we decide the position of various modules in our website  design. Example of different modules in a general website are login , search,  menu, logo, footer etc.. It is also known as website template or website  structure.<br />
<strong>  Let us consider  the below given template to understand: &#8220;What is website wireframing?&#8221; : </strong>
  </p>
<table align="center" border="1px" width="450px">
<tr height="100px">
<td width="100px"> Logo Here </td>
<td colspan="2"> Search Bar Here </td>
</tr>
<tr height="25px">
<td colspan="3"> Menu Here </td>
</tr>
<tr height="200px">
<td colspan="2"> Main Text </td>
<td width="200px"> News </td>
</tr>
<tr height="50px">
<td colspan="3"> Footer Here </td>
</tr>
</table>
<p><br/></p>
<p>In  the above layout we allocate space for displaying logo of a company, space for  search module, space for displaying menu, space for displaying events and also  place for footer.</p>
<h3>Deciding width  of a website:</h3>
<p>An important  question while designing a website is that what must be its resolution. As a  standard practice we should decide the width of our website in the range of  900px to 1200px.<br />
<strong>Why so?</strong><br />
  The standard  resolution of a monitor is 1024&#215;768 pixels. If we develop a website which is  larger than 1024px width and even if any user opens that website in a full  screen browser then also browser will generate horizontal scroll bar at the  bottom. As we don&rsquo;t have horizontal scroll button on our mouse device, it will  be inconvenient for the users to access such site. That is why we extend our  webpage in terms of height and not in terms of width.<br />
  Now-a-days we  are familiar with HD monitors having resolution of 1440px and above. Taking  into consideration the target audience it is recommendable to have the width of  our website between 900px to 1200px.</p>
<p><strong>Note :-</strong> Another  approach to develop a website is by occupying 100% of width available with the  browser resolution eg. Google, Gmail.</p>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/html/what-is-website-wireframing">What is website wireframing?</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ankit.co/tutorials/html/what-is-website-wireframing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
