<?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>Neepan Tech Website Development / Training Services &#187; Uncategorized</title>
	<atom:link href="http://www.neepantech.com/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://www.neepantech.com</link>
	<description>PHP, MYSQL, SEO, DOT NET, Joomla CMS Training BHOPAL</description>
	<lastBuildDate>Wed, 25 May 2011 06:42:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Jquery Selectors &#8211; Tutorial Complete Sheet</title>
		<link>http://www.neepantech.com/2010/12/jquery-selectors.html</link>
		<comments>http://www.neepantech.com/2010/12/jquery-selectors.html#comments</comments>
		<pubDate>Mon, 13 Dec 2010 09:34:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=1108</guid>
		<description><![CDATA[jQuery Selectors
Use our excellent jQuery Selector.



Selector
Example
Selects


*
$(&#8220;*&#8221;)
All elements


#id
$(&#8220;#lastname&#8221;)
The element with id=lastname


.class
$(&#8220;.intro&#8221;)
All elements with


element
$(&#8220;p&#8221;)
All p elements


.class.class
$(&#8220;.intro.demo&#8221;)
All elements with the classes &#8220;intro&#8221; and &#8220;demo&#8221;







:first
$(&#8220;p:first&#8221;)
The first p element


:last
$(&#8220;p:last&#8221;)
The last p element


:even
$(&#8220;tr:even&#8221;)
All even tr elements


  dd
$(&#8220;tr:odd&#8221;)
All odd tr elements







:eq(index)
$(&#8220;ul li:eq(3)&#8221;)
The fourth element in a list (index starts at 0)


:gt(no)
$(&#8220;ul li:gt(3)&#8221;)
List elements with an index greater than 3


:lt(no)
$(&#8220;ul li:lt(3)&#8221;)
List elements with [...]]]></description>
			<content:encoded><![CDATA[<h2>jQuery Selectors</h2>
<p>Use our excellent jQuery Selector.</p>
<table border="1" cellspacing="0" width="100%">
<tbody>
<tr>
<th align="left">Selector</th>
<th align="left">Example</th>
<th align="left">Selects</th>
</tr>
<tr>
<td>*</td>
<td>$(&#8220;*&#8221;)</td>
<td>All elements</td>
</tr>
<tr>
<td>#<em>id</em></td>
<td>$(&#8220;#lastname&#8221;)</td>
<td>The element with id=lastname</td>
</tr>
<tr>
<td>.<em>class</em></td>
<td>$(&#8220;.intro&#8221;)</td>
<td>All elements with</td>
</tr>
<tr>
<td><em>element</em></td>
<td>$(&#8220;p&#8221;)</td>
<td>All p elements</td>
</tr>
<tr>
<td>.<em>class</em>.<em>class</em></td>
<td>$(&#8220;.intro.demo&#8221;)</td>
<td>All elements with the classes &#8220;intro&#8221; and &#8220;demo&#8221;</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:first</td>
<td>$(&#8220;p:first&#8221;)</td>
<td>The first p element</td>
</tr>
<tr>
<td>:last</td>
<td>$(&#8220;p:last&#8221;)</td>
<td>The last p element</td>
</tr>
<tr>
<td>:even</td>
<td>$(&#8220;tr:even&#8221;)</td>
<td>All even tr elements</td>
</tr>
<tr>
<td> <img src='http://www.neepantech.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> dd</td>
<td>$(&#8220;tr:odd&#8221;)</td>
<td>All odd tr elements</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:eq(<em>index</em>)</td>
<td>$(&#8220;ul li:eq(3)&#8221;)</td>
<td>The fourth element in a list (index starts at 0)</td>
</tr>
<tr>
<td>:gt(<em>no</em>)</td>
<td>$(&#8220;ul li:gt(3)&#8221;)</td>
<td>List elements with an index greater than 3</td>
</tr>
<tr>
<td>:lt(<em>no</em>)</td>
<td>$(&#8220;ul li:lt(3)&#8221;)</td>
<td>List elements with an index less than 3</td>
</tr>
<tr>
<td>:not(<em>selector</em>)</td>
<td>$(&#8220;input:not(:empty)&#8221;)</td>
<td>All input elements that are not empty</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:header</td>
<td>$(&#8220;:header&#8221;)</td>
<td>All header elements h1, h2 &#8230;</td>
</tr>
<tr>
<td>:animated</td>
<td>$(&#8220;:animated&#8221;)</td>
<td>All animated elements</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:contains(<em>text</em>)</td>
<td>$(&#8220;:contains(&#8216;W3Schools&#8217;)&#8221;)</td>
<td>All elements which contains the text</td>
</tr>
<tr>
<td>:empty</td>
<td>$(&#8220;:empty&#8221;)</td>
<td>All elements with no child (elements) nodes</td>
</tr>
<tr>
<td>:hidden</td>
<td>$(&#8220;p:hidden&#8221;)</td>
<td>All hidden p elements</td>
</tr>
<tr>
<td>:visible</td>
<td>$(&#8220;table:visible&#8221;)</td>
<td>All visible tables</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><em>s1</em>,<em>s2</em>,<em>s3</em></td>
<td>$(&#8220;th,td,.intro&#8221;)</td>
<td>All elements with matching selectors</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>[<em>attribute</em>]</td>
<td>$(&#8220;[href]&#8220;)</td>
<td>All elements with a href attribute</td>
</tr>
<tr>
<td>[<em>attribute</em>=<em>value</em>]</td>
<td>$(&#8220;[href='default.htm']&#8220;)</td>
<td>All elements with a href attribute value equal to &#8220;default.htm&#8221;</td>
</tr>
<tr>
<td>[<em>attribute</em>!=<em>value</em>]</td>
<td>$(&#8220;[href!='default.htm']&#8220;)</td>
<td>All elements with a href attribute value not equal to &#8220;default.htm&#8221;</td>
</tr>
<tr>
<td>[<em>attribute</em>$=<em>value</em>]</td>
<td>$(&#8220;[href$='.jpg']&#8220;)</td>
<td>All elements with a href attribute value ending with &#8220;.jpg&#8221;</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:input</td>
<td>$(&#8220;:input&#8221;)</td>
<td>All input elements</td>
</tr>
<tr>
<td>:text</td>
<td>$(&#8220;:text&#8221;)</td>
<td>All input elements with type=&#8221;text&#8221;</td>
</tr>
<tr>
<td>:password</td>
<td>$(&#8220;:password&#8221;)</td>
<td>All input elements with type=&#8221;password&#8221;</td>
</tr>
<tr>
<td>:radio</td>
<td>$(&#8220;:radio&#8221;)</td>
<td>All input elements with type=&#8221;radio&#8221;</td>
</tr>
<tr>
<td>:checkbox</td>
<td>$(&#8220;:checkbox&#8221;)</td>
<td>All input elements with type=&#8221;checkbox&#8221;</td>
</tr>
<tr>
<td>:submit</td>
<td>$(&#8220;:submit&#8221;)</td>
<td>All input elements with type=&#8221;submit&#8221;</td>
</tr>
<tr>
<td>:reset</td>
<td>$(&#8220;:reset&#8221;)</td>
<td>All input elements with type=&#8221;reset&#8221;</td>
</tr>
<tr>
<td>:button</td>
<td>$(&#8220;:button&#8221;)</td>
<td>All input elements with type=&#8221;button&#8221;</td>
</tr>
<tr>
<td>:image</td>
<td>$(&#8220;:image&#8221;)</td>
<td>All input elements with type=&#8221;image&#8221;</td>
</tr>
<tr>
<td>:file</td>
<td>$(&#8220;:file&#8221;)</td>
<td>All input elements with type=&#8221;file&#8221;</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:enabled</td>
<td>$(&#8220;:enabled&#8221;)</td>
<td>All enabled input elements</td>
</tr>
<tr>
<td>:disabled</td>
<td>$(&#8220;:disabled&#8221;)</td>
<td>All disabled input elements</td>
</tr>
<tr>
<td>:selected</td>
<td>$(&#8220;:selected&#8221;)</td>
<td>All selected input elements</td>
</tr>
<tr>
<td>:checked</td>
<td>$(&#8220;:checked&#8221;)</td>
<td>All checked input elements<a href="http://"></p>
<p></a><a href="http://"></a><a href="http://"></a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/12/jquery-selectors.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thetech4you.com is developed by NeepanTech Student</title>
		<link>http://www.neepantech.com/2010/09/thetech4you-com-is-developed-by-neepantech-student.html</link>
		<comments>http://www.neepantech.com/2010/09/thetech4you-com-is-developed-by-neepantech-student.html#comments</comments>
		<pubDate>Mon, 06 Sep 2010 04:19:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bhabha Engg.Research Institute Bhopal]]></category>
		<category><![CDATA[Madhya Pradesh]]></category>
		<category><![CDATA[mp tourism]]></category>
		<category><![CDATA[thetech4you.com]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=962</guid>
		<description><![CDATA[NeepanTech Student from Bhabha Engg.Research Institute Bhopal has develop thetech4you.com website.

This website is developed with the aim of exploring Madhya Pradesh in new way and by new thought.This website will help you visit different district tourist place in M.P ,This website covers  road maps ,railway road map, physical map of M.P.and you can understand culture of Madhya Pradesh , Festival of Madhya Pradesh , [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NeepanTech</strong> Student from Bhabha Engg.Research Institute Bhopal has develop <strong><a title="thetech4you.com" href="http://www.thetech4you.com" target="_blank">thetech4you.com</a></strong> website.</p>
<div></div>
<div>This website is developed with the aim of exploring <strong>Madhya Pradesh</strong> in new way and by new thought.This website will help you visit different district tourist place in M.P ,This website covers  road maps ,railway road map, physical map of M.P.and you can understand culture of Madhya Pradesh , Festival of Madhya Pradesh , Arts and craft of mp and history of mp.This site mostly focus on tourism places for tourist to visit whole Madhya Pradesh show for information about mp tourism visit <strong>www.thetech4you.com</strong> which is dedicated by young engineer&#8217;s.</div>
<div></div>
<div><a href="http://www.neepantech.com/wp-content/uploads/2010/09/Ashok-220x300.jpg"><img class="alignleft size-thumbnail wp-image-963" title="Ashok-220x300" src="http://www.neepantech.com/wp-content/uploads/2010/09/Ashok-220x300-150x150.jpg" alt="" width="150" height="150" /></a></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div>Name:Ashok choudhary</div>
<div id="_mcePaste">college :Bhabha Engg.Research Institute Bhopal</div>
<div></div>
<div><a href="http://www.neepantech.com/wp-content/uploads/2010/09/aditya-227x300.jpg"><img class="alignleft size-thumbnail wp-image-964" title="aditya-227x300" src="http://www.neepantech.com/wp-content/uploads/2010/09/aditya-227x300-150x150.jpg" alt="" width="150" height="150" /></a></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div id="_mcePaste">Name:Aditya Tiwari</div>
<div id="_mcePaste">college :Bhabha Engg.Research Institute Bhopal</div>
<p style="text-align: center;"><strong>NeepanTech wish them all the best for their future. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/09/thetech4you-com-is-developed-by-neepantech-student.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TechLaugh.com is Developed By NeepanTech Student</title>
		<link>http://www.neepantech.com/2010/08/techlaugh-com-is-developed-by-neepantech-student.html</link>
		<comments>http://www.neepantech.com/2010/08/techlaugh-com-is-developed-by-neepantech-student.html#comments</comments>
		<pubDate>Mon, 09 Aug 2010 05:02:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[OIST Bhopal]]></category>
		<category><![CDATA[Oriental College Bhopal]]></category>
		<category><![CDATA[shree institute of science and technology bhopal]]></category>
		<category><![CDATA[SIST Bhopal]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=948</guid>
		<description><![CDATA[TechLaugh.com is developed by NeepanTech Students Ashish and Anupam Tamrakar.

 
Ashish and Anupam Tamrakar
About the Website Developers:.
I’m Er. &#8220;Ashish kumar Tamrakar&#8221; (from shree institute of science and technology bhopal) and I write the latest technological updates of technical field to know the latest of happenings in the world . Me and my brother &#8220;Anupam Tamrakar&#8220;  ( from [...]]]></description>
			<content:encoded><![CDATA[<p><a title="TechLaugh" href="http:/techlaugh.com" target="_blank">TechLaugh.com</a> is developed by<strong> NeepanTech</strong> Students <strong>Ashish and Anupam Tamrakar</strong>.</p>
<p><a href="http://www.neepantech.com/wp-content/uploads/2010/08/b.jpg"><img class="alignleft size-full wp-image-949" title="b" src="http://www.neepantech.com/wp-content/uploads/2010/08/b.jpg" alt="" width="200" height="153" /></a></p>
<p><a href="http://www.neepantech.com/wp-content/uploads/2010/08/a.bmp"><img class="alignleft size-full wp-image-950" title="a" src="http://www.neepantech.com/wp-content/uploads/2010/08/a.bmp" alt="" width="117" height="155" /></a><strong> </strong></p>
<p><span style="text-decoration: underline;">Ashish and Anupam Tamrakar</span></p>
<p><strong>About the </strong><strong>Website Developers:.</strong></p>
<p>I’m Er. &#8220;<strong>Ashish kumar Tamrakar</strong>&#8221; (<strong>from shree institute of science and technology bhopal</strong>) and I write the latest technological updates of technical field to know the latest of happenings in the world . Me and my brother &#8220;<strong>Anupam Tamrakar</strong>&#8220;  ( <strong>from oriental institute of science and technology Bhopal </strong>) started it in 2010.</p>
<p>This website is developed by the aim of providing quality service in the field of IT Industry. The Key Feature of the website are as follows:</p>
<p>1) Reviews about the emerging technologies in modern era.</p>
<p><strong> </strong></p>
<p>2) Latest happenings and updates of our surroundings</p>
<p><strong> </strong></p>
<p>3) Free software downloads especially web developers tools.</p>
<p><strong> </strong></p>
<p>4) Educational material i.e.programming guides ,Gk questions  etc.</p>
<p><strong> </strong></p>
<p>5) Entertainment with more than 1000 flash games</p>
<p><strong> </strong></p>
<p>6) Live cricket scorecard and RGTU RESULTS</p>
<p><strong> </strong></p>
<p>7) Easy to navigate and subscribe with RSS feeds..</p>
<p><strong> </strong></p>
<p> <img src='http://www.neepantech.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Socially connected with various networks  i.e. FACEBOOK ,TWITTER.</p>
<p><strong>NeepanTech</strong> wish them Best Of Luck for their future.</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/08/techlaugh-com-is-developed-by-neepantech-student.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design &#124; Web Design Training Bhopal</title>
		<link>http://www.neepantech.com/2010/03/web-design-bhopal-web-design-training-bhopal.html</link>
		<comments>http://www.neepantech.com/2010/03/web-design-bhopal-web-design-training-bhopal.html#comments</comments>
		<pubDate>Thu, 25 Mar 2010 16:31:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web design bhopal]]></category>
		<category><![CDATA[Web Design Company Bhopal]]></category>
		<category><![CDATA[Web Design Training Bhopal]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=848</guid>
		<description><![CDATA[Every Website comprise of two thing Designing portion, Development Portion. Web design is one of the most important portion of any website, as any user who is using your website firstly attracts with the interactive interface of your website this interactive interface is also know as web 2.0.
Technology used in Web Design are CSS (Search Engine Friendly [...]]]></description>
			<content:encoded><![CDATA[<p>Every Website comprise of two thing Designing portion, Development Portion. <strong>Web design </strong>is one of the most important portion of any website, as any user who is using your website firstly attracts with the interactive interface of your website this interactive interface is also know as <strong>web 2.0</strong>.</p>
<p>Technology used in Web Design are CSS (Search Engine Friendly web design), Photoshop(Grafix Design), Flash ( Animation). In all these technologies CSS web design are one of the most important as these website are search engine friendly and can be easily crawl by the search engines and will help you in making your website to front page of google ( search Engines).</p>
<p>As Search Engine traffic is one of the most important on your website as it gives you traffic to your website, which directly or indirectly refer to bussiness.</p>
<p style="text-align: left;"><span style="color: #000000;">Learn </span><strong><span style="color: #000000;">Web Design</span></strong><span style="color: #000000;"> @ Neepan Tech Call 9926255956.</span></p>
<h1 style="text-align: center;"><strong>learn <a title="Web design Bhopal" href="http://www.neepantech.com/courses/website-designing-training-course" target="_self">Web Design at Bhopal</a></strong></h1>
<h3 style="text-align: center;"><strong><span style="color: #000000;">NeepanTech Call: 9926255956</span></strong></h3>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/03/web-design-bhopal-web-design-training-bhopal.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn how to make your website to the front page of google, yahoo, bing search engines</title>
		<link>http://www.neepantech.com/2010/03/learn-website-to-the-front-page-of-google-yahoo-bing-search-engines-bhopal.html</link>
		<comments>http://www.neepantech.com/2010/03/learn-website-to-the-front-page-of-google-yahoo-bing-search-engines-bhopal.html#comments</comments>
		<pubDate>Wed, 24 Mar 2010 08:48:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bhopal SEO]]></category>
		<category><![CDATA[SEO Bhopal]]></category>
		<category><![CDATA[SEO in bhopal]]></category>
		<category><![CDATA[SEO Training Bhopal]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=846</guid>
		<description><![CDATA[Want to learn how to make your website to the top of Search Engine like google, yahoo, bing etc. The process of making a website to the front page of google, yahoo, bing is called Search Engine Optimization commonly know as SEO. NeepanTech provide the training for the search engine optimization (SEO), which will be very helpful [...]]]></description>
			<content:encoded><![CDATA[<p>Want to learn how to make your website to the top of Search Engine like google, yahoo, bing etc. The process of making a <strong>website</strong> to the <strong>front page</strong> of <strong>google, yahoo, bing</strong> is called <strong>Search Engine Optimization</strong> commonly know as <strong>SEO. </strong>NeepanTech provide the training for the search engine optimization (SEO), which will be very helpful for you in making your website to the top of search engine.</p>
<p>Learning SEO will also help in boost up  your career, As many of the companies are working on the SEO for making their client website to the front page, You can get job as SEO Expert in any of the multinational companies.</p>
<h2 style="text-align: center;"><strong><span style="color: #000080;"><a title="Learn SEO Bhopal" href="http://www.neepantech.com/courses/seo-training-course">Learn SEO</a> @ NeepanTech</span></strong></h2>
<h2 style="text-align: center;"><strong>Call: +91-9926255956</strong></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/03/learn-website-to-the-front-page-of-google-yahoo-bing-search-engines-bhopal.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TodayMess.com developed by NeepanTech Student Shailendra Nagina</title>
		<link>http://www.neepantech.com/2010/03/todaymess-com-developed-by-neepantech-student-shailendra-nagina.html</link>
		<comments>http://www.neepantech.com/2010/03/todaymess-com-developed-by-neepantech-student-shailendra-nagina.html#comments</comments>
		<pubDate>Sat, 13 Mar 2010 05:51:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=800</guid>
		<description><![CDATA[NeepanTech Student Shailendra Nagina has develop Todaymess.com. People usually confused what day represent today or what is the importance of today in the history. So this website will tell you what it the importance of today in history. This website also give SMS Message like Funny SMS Message, FriendShip SMS Message and more &#8230;.

Still the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NeepanTech </strong>Student <strong>Shailendra Nagina</strong> has develop <strong><a title="Today Mess" href="http://www.todaymess.com/" target="_blank">Todaymess.com</a></strong>. People usually confused what day represent today or what is the importance of today in the history. So this website will tell you what it the importance of today in history. This website also give SMS Message like <strong><a title="Funny SMS Message" href="http://www.todaymess.com/?page_id=193" target="_blank">Funny SMS Message</a></strong>, <strong>FriendShip SMS Message</strong> and more &#8230;.</p>
<p><a title="Today Mess" href="http://www.todaymess.com/"><img class="aligncenter size-full wp-image-828" title="todaymess" src="http://www.neepantech.com/wp-content/uploads/2010/03/todaymess.jpg" alt="" width="950" height="499" /></a></p>
<p>Still the website is in starting phase and take some time to gain it&#8217;s potential. We wish him best of luck.</p>
<p><strong>About the Author:</strong></p>
<p style="text-align: left;"><strong>Shailendra Nagina is Web Expert</strong></p>
<p style="text-align: left;"><strong> He has his expertise in Open Source Technologies like PHP, MYSQL, SEO, HTML, CSS.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/03/todaymess-com-developed-by-neepantech-student-shailendra-nagina.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BharatWhiz.com Develop By NeepanTech Student</title>
		<link>http://www.neepantech.com/2010/03/bharatwhiz-com-develop-by-neepantech-student.html</link>
		<comments>http://www.neepantech.com/2010/03/bharatwhiz-com-develop-by-neepantech-student.html#comments</comments>
		<pubDate>Fri, 12 Mar 2010 18:52:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=824</guid>
		<description><![CDATA[
BharatWhiz.com website is developed with the aim of giving quality service to all students as well as others.
Features of BharatWhiz.com website are.
1-Rgpv results as well as others result can also be seen.
2-Fast live streaming of cricket match online.
3-Uptodate information about latest technology.
4-Covers latest news of world.
5-Another striking feature is that if u think yourself handsome [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neepantech.com/wp-content/uploads/2010/03/Untitled.png"><img class="aligncenter size-full wp-image-830" title="Untitled" src="http://www.neepantech.com/wp-content/uploads/2010/03/Untitled.png" alt="" width="426" height="238" /></a></p>
<p><strong>BharatWhiz.com</strong> website is developed with the aim of giving quality service to all students as well as others.<br />
Features of <strong><a title="Bharat Whiz" href="http://www.bharatwhiz.com/" target="_self">BharatWhiz.com</a></strong> website are.</p>
<p>1-Rgpv results as well as others result can also be seen.<br />
2-<strong><a href="http://bharatwhiz.com/ipl.html">Fast live streaming of cricket match online</a></strong><a href="http://bharatwhiz.com/ipl.html">.</a><br />
3-Uptodate information about latest technology.<br />
4-Covers latest news of world.<br />
5-Another striking feature is that if u think yourself handsome or smart then u can also enjoy the section of <strong>mr and miss techage.</strong><br />
6-You can also download  latest softwares which are necessary for your pc.<br />
7-You can also enjoy Flash games on it.<br />
8-You can download latest audio and video songs.<br />
9-For most feature is tackling of love problems and love meter.(<strong>Love Guru</strong>).</p>
<p>10- You will get free E-Books to download from this website.<br />
NOTE: If you all feel that there is something missing in BharatWhiz.comwebsite then please leave a comment for them.</p>
<p style="text-align: center;"><strong>This website is dedicated to young Engineering Student.</strong></p>
<p style="text-align: center;">Need Support and well wish of Young Engineering Student.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/03/bharatwhiz-com-develop-by-neepantech-student.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moodle CMS Training Bhopal</title>
		<link>http://www.neepantech.com/2010/03/moodle-cms-training-bhopal.html</link>
		<comments>http://www.neepantech.com/2010/03/moodle-cms-training-bhopal.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 10:16:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CMS Bhopal]]></category>
		<category><![CDATA[CMS Training Bhopal]]></category>
		<category><![CDATA[LMS Bhopal]]></category>
		<category><![CDATA[LMS Training Bhopal]]></category>
		<category><![CDATA[Moodle Bhopal]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=795</guid>
		<description><![CDATA[NeepanTech provide Training in Moodle(CMS) at Bhopal.
Moodle is a CMS(Content Management System) forLearning Management System (LMS). Moodle is one of the best CMS for the college education, university education management system. One of the most important thing is it&#8217;s Open Source, Freeware, and platform Independent. Moodle is built in PHP(Open Source Language) used for developing [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong>NeepanTech</strong> provide Training in <strong>Moodle</strong>(<strong>CMS</strong>) at Bhopal.</p>
<p>Moodle is a <strong>CMS</strong>(Content Management System) forLearning Management System (LMS). Moodle is one of the best CMS for the college education, university education management system. One of the most important thing is it&#8217;s Open Source, Freeware, and platform Independent. Moodle is built in PHP(Open Source Language) used for developing web application. For the backend moodle use MYSQL.</p>
<p style="text-align: center;"><strong>NeepanTech Provide training in Moodle (CMS) for learning Management System (LMS).</strong></p>
<p><a href="http://www.neepantech.com/wp-content/uploads/2010/03/moodle-logo.gif"><img class="aligncenter size-full wp-image-796" title="moodle-logo" src="http://www.neepantech.com/wp-content/uploads/2010/03/moodle-logo.gif" alt="" width="200" height="46" /></a></p>
<h1 style="text-align: center;"></h1>
<h1 style="text-align: center;"><strong>Moodle CMS Training Bhopal</strong></h1>
<p style="text-align: center;"><strong><span style="color: #ff0000;">NeepanTech, Call: 9926255956</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/03/moodle-cms-training-bhopal.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CrazyFunda.com Website develop by NeepanTech Student</title>
		<link>http://www.neepantech.com/2010/02/crazyfunda-com-website-develop-oist-neepantech-student.html</link>
		<comments>http://www.neepantech.com/2010/02/crazyfunda-com-website-develop-oist-neepantech-student.html#comments</comments>
		<pubDate>Sat, 20 Feb 2010 09:53:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CrazyFunda.com]]></category>
		<category><![CDATA[NeepanTech Student from OIST Bhopal]]></category>
		<category><![CDATA[OIST Bhopal]]></category>
		<category><![CDATA[OIST College Bhopal]]></category>
		<category><![CDATA[Oriental College of Science and Technology]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=775</guid>
		<description><![CDATA[ Neepan Tech Student Abhijeet banarse develop website crazyfunda.com for helping the young engineering student from the bhopal. He is from OIST College Bhopal(Oriental Institute of Science and Technology) Bhopal. Completed their training from NeepanTech Company Bhopal in Web Technologies (PHP, MYSQL, SEO, HTML, CSS, Website Designing).
CrazyFunda.com is develop with the aim that Young Engineering [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neepantech.com/wp-content/uploads/2010/02/scan.jpg"><img class="alignleft size-full wp-image-776" title="Abhijeet-NeepanTech-Bhopal" src="http://www.neepantech.com/wp-content/uploads/2010/02/scan.jpg" alt="" width="187" height="236" /></a> <strong>Neepan Tech Student Abhijeet banarse</strong> develop website <strong>crazyfunda.com</strong> for helping the young engineering student from the bhopal. He is from OIST College Bhopal(Oriental Institute of Science and Technology) Bhopal. Completed their training from NeepanTech Company Bhopal in Web Technologies (PHP, MYSQL, SEO, HTML, CSS, Website Designing).</p>
<p>CrazyFunda.com is develop with the aim that <strong>Young Engineering College Student </strong>from Bhopal can easily search jobs in their respective field and can get proper guidance of GD, PI Question while giving the interview.  So you can get Group Disscussion, Personal Interview Question, Technical Question, How to handle Technical Question form the website <strong><a href="http://www.crazyfunda.com">Crazyfunda.com</a></strong><strong>. </strong>Website is also features resume building tips. Presently there is lot to be done in website and it is still in the starting face.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/02/crazyfunda-com-website-develop-oist-neepantech-student.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design Bhopal</title>
		<link>http://www.neepantech.com/2010/01/web-design-bhopal.html</link>
		<comments>http://www.neepantech.com/2010/01/web-design-bhopal.html#comments</comments>
		<pubDate>Fri, 29 Jan 2010 08:33:00 +0000</pubDate>
		<dc:creator>pankaj_eng</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[web desgin bhopal]]></category>
		<category><![CDATA[web desgining bhopal]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webdesign bhopal]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=382</guid>
		<description><![CDATA[Neepan Tech is web Design training institute situated in Bhopal. We provide training in website designing, website development, SEO(Search Engine Optimization). The technologies used in website design and development are PHP ( PHP HyperText Preprocessor). CSS (Cascaded Style Sheet), ASP.NET Framework, database used in the web application are mysql, sqlserver.
Web Design using CSS ( Cascaded [...]]]></description>
			<content:encoded><![CDATA[<p>Neepan Tech is <strong>web Design</strong> training institute situated in Bhopal. We provide training in <strong>web</strong>site <strong>design</strong>ing, website development, SEO(Search Engine Optimization). The technologies used in website design and development are PHP ( PHP HyperText Preprocessor). CSS (Cascaded Style Sheet), ASP.NET Framework, database used in the web application are mysql, sqlserver.</p>
<h2>Web Design using CSS ( Cascaded Style Sheet)</h2>
<p>We use CSS technology to design website. The benefit of using CSS(Cascaded Style Sheet) is that the loding time of the website is greatly reduce ( Fast opening of website at client side), design will remain constant to all the browser and last and most important the website will become search engine friendly as it will make more traffic from the Search Engine.</p>
<p style="text-align: center;">
<h1 style="text-align: center;"><span style="color: #000080;">Learn How to make Search Engine Friendly <a title="Web Design Bhopal" href="http://www.neepantech.com/courses/website-designing-training-course" target="_blank">Web Design</a></span></h1>
<p style="text-align: center;"><span style="color: #000080;"><a href="http://localhost/neepantech/wp-content/uploads/2010/01/webdesign.jpg"><img class="aligncenter size-medium wp-image-384" title="webdesign" src="http://www.neepantech.com/wp-content/uploads/2010/01/webdesign-300x183.jpg" alt="web design bhopal" width="300" height="183" /></a><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/01/web-design-bhopal.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

