<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Vinayak Bamane &#8211; Amazing Things</title>
	<atom:link href="https://www.amazingthings.in/author/vinayakbamane/feed" rel="self" type="application/rss+xml" />
	<link>https://www.amazingthings.in</link>
	<description>Amazing Things is for Everyone. Everything which is amazing. Amazing wallpapers, entertainment, creativity, technology updates &#38; knowledge.</description>
	<lastBuildDate>Thu, 20 Sep 2018 12:26:53 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.3</generator>

<image>
	<url>https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2017/12/AmazingThings.png?fit=32%2C32&#038;ssl=1</url>
	<title>Vinayak Bamane &#8211; Amazing Things</title>
	<link>https://www.amazingthings.in</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">44718163</site>	<item>
		<title>How to get current cursor position in C and dot net</title>
		<link>https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html</link>
					<comments>https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html#respond</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Tue, 28 May 2013 09:52:21 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[current cursor position in c#]]></category>
		<category><![CDATA[winforms]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=2704</guid>

					<description><![CDATA[<p>&#160; How to get cursor position in C# In future if you are working on any Game Development project or any project where you need to find the current cursor position, this simple program might help you. &#160; Code(.cs file) :  namespace CursorPosition { public partial class Form1 : Form { public Form1() { InitializeComponent(); [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html">How to get current cursor position in C and dot net</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>&nbsp;</p>
<p><strong><span style="font-family: georgia, palatino; font-size: large; color: #ff9900;">How to get cursor position in C#</span></strong></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">In future if you are working on any Game Development project or any project where you need to find the current cursor position, this simple program might help you.</span></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif"><img fetchpriority="high" decoding="async" data-attachment-id="2705" data-permalink="https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html/croppercapture1-7" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif?fit=916%2C643&amp;ssl=1" data-orig-size="916,643" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CropperCapture[1]" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif?fit=300%2C210&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif?fit=696%2C489&amp;ssl=1" class="alignnone size-full wp-image-2705" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif?resize=696%2C489" alt="CropperCapture[1]" width="696" height="489" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p><span style="color: #ff9900; font-family: georgia, palatino; font-size: large;"><strong>Code(.cs file) : </strong></span></p>
<p>namespace CursorPosition<br />
{<br />
public partial class Form1 : Form<br />
{<br />
public Form1()<br />
{<br />
InitializeComponent();</p>
<p>this.MouseMove+=Form1_MouseMove;<br />
}</p>
<p>void Form1_MouseMove(object sender, MouseEventArgs e)<br />
{<br />
cursorPositionLabel.Text = e.Location.ToString();<br />
}</p>
<p>private void Form1_Load(object sender, EventArgs e)<br />
{</p>
<p>}</p>
<p>}<br />
}</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html">How to get current cursor position in C and dot net</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2704</post-id>	</item>
		<item>
		<title>Best Android Applications for IPL 6</title>
		<link>https://www.amazingthings.in/best-android-applications-for-ipl-6.html</link>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Mon, 22 Apr 2013 08:13:10 +0000</pubDate>
				<category><![CDATA[Iphone and Android]]></category>
		<category><![CDATA[android applications for ipl 6]]></category>
		<category><![CDATA[ipl]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=2661</guid>

					<description><![CDATA[<p>Best Android Apps for IPL 2013 IPL season is started and we people always stay connected to IPL news like What is happening around?, How a team is performing?, Who will be the part of Playing Eleven?, What is the score? etc, etc.. The best part of it is for android users we have got [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/best-android-applications-for-ipl-6.html">Best Android Applications for IPL 6</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong><span style="font-family: georgia, palatino; font-size: large; color: #99cc00;">Best Android Apps for IPL 2013</span></strong></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">IPL season is started and we people always stay connected to IPL news like What is happening around?, How a team is performing?, Who will be the part of Playing Eleven?, What is the score? etc, etc.. The best part of it is for android users we have got lots of options to fulfill our demands but, we need to find the perfect to accomplish it.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Here i list some applications which will allow you stay connected to IPL easily and most importantly in a SMARTER way.&nbsp;</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">* Click on Name of the application to download it from PlayStore.</span></p>
<p><span style="font-family: georgia, palatino; font-size: large; color: #99cc00;"><strong><a href="https://play.google.com/store/apps/details?id=com.digivive.offdeck&amp;feature=nav_result#?t=W251bGwsMSwxLDMsImNvbS5kaWdpdml2ZS5vZmZkZWNrIl0." target="_blank" rel="nofollow"><span style="color: #99cc00;">1. nexGtv </span></a></strong></span></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/NextGTV.jpg"><img decoding="async" data-attachment-id="2662" data-permalink="https://www.amazingthings.in/best-android-applications-for-ipl-6.html/nextgtv" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/NextGTV.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="nextGTV" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/NextGTV.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/NextGTV.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-2662" alt="nextGTV" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/NextGTV.jpg?resize=696%2C340" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/NextGTV.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/NextGTV.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Imagine how nice it will if you can watch IPL live on the go!!.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">nexGTV helps you to watch IPL live. With addition to it you can watch highlights, 6&#8217;s and 4&#8217;s, best innings etc.&nbsp;It works on almost every android device.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">And this application amazingly stream videos with less buffer even at 2G network. You can also watch other television channels for free.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Since it offers Live IPL streaming it charges Rs.14 for 7 days in which you can watch digital channels as well for free.</span></p>
<p><span style="font-family: georgia, palatino; font-size: large; color: #99cc00;"><strong><a href="https://play.google.com/store/apps/details?id=com.cricbuzz.android&amp;feature=nav_result#?t=W251bGwsMSwxLDMsImNvbS5jcmljYnV6ei5hbmRyb2lkIl0." target="_blank" rel="nofollow"><span style="color: #99cc00;">2. Cricbuzz </span></a></strong></span></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/CricBuzz.jpg"><img decoding="async" data-attachment-id="2688" data-permalink="https://www.amazingthings.in/best-android-applications-for-ipl-6.html/cricbuzz" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/CricBuzz.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CricBuzz" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/CricBuzz.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/CricBuzz.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-2688" alt="CricBuzz" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/CricBuzz.jpg?resize=696%2C340" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/CricBuzz.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/CricBuzz.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Another best application for IPL News, Scores, Updates, Reviews . And not only IPL it gives you score updates for matches happening around the globe. With the new update you can use this application in form of Widget. Refreshes scores faster and gives you live&nbsp;commentary&nbsp;along with it.</span></p>
<p><strong style="color: #99cc00; font-family: georgia, palatino; font-size: large;"><a href="https://play.google.com/store/apps/details?id=com.pulselive.bcci.android&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5wdWxzZWxpdmUuYmNjaS5hbmRyb2lkIl0." target="_blank" rel="nofollow"><span style="color: #99cc00;">3. IPL</span></a></strong></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/IPL.jpg"><img loading="lazy" decoding="async" data-attachment-id="2689" data-permalink="https://www.amazingthings.in/best-android-applications-for-ipl-6.html/ipl" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/IPL.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IPL" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/IPL.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/IPL.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-2689" alt="IPL" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/IPL.jpg?resize=696%2C340" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/IPL.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/IPL.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">An official android app for IPL by BCCI. Its simple, fast, provides commentary and provide fixtures. Gives best way to support your favorite IPL team. Represents stats, standings in better way. &nbsp;Also gives you IPL news and Videos.</span></p>
<p><strong style="color: #99cc00; font-family: georgia, palatino; font-size: large;"><a href="https://play.google.com/store/apps/details?id=com.yahoo.cricket.ui&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS55YWhvby5jcmlja2V0LnVpIl0." target="_blank" rel="nofollow"><span style="color: #99cc00;">4. Yahoo! Cricket</span></a></strong></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Yahoo.png"><img loading="lazy" decoding="async" data-attachment-id="2691" data-permalink="https://www.amazingthings.in/best-android-applications-for-ipl-6.html/yahoo" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Yahoo.png?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Yahoo" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Yahoo.png?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Yahoo.png?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-2691" alt="Yahoo" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Yahoo.png?resize=696%2C340" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Yahoo.png?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/Yahoo.png?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Another best application for Live Scores and this time from Yahoo!. Best user friendly application.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> &#8211; A quick look at all the live scores of matches currently happening.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> &#8211; A very interactive scorecard. Browse through the batting line-up to know about partnerships, who got out when, and who is coming up next.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> &#8211; Instant real time updates of a live match, be it a wicket, 4, 6 or an important milestone so that you don&#8217;t missing anything important for you.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> &#8211; Install the widget and enjoy a live match right on your homescreen.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> &#8211; Provides users with various ways of enjoying a cricket match – from the basic scores, all the way up to a detailed ball-by-ball commentary</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> &#8211; View specially created photo galleries showing the latest from the world of cricket.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> &#8211; Read all the latest news articles on the game.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> &#8211; A simple way to browse through results of completed matches, and to know schedules of upcoming matches.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"> &#8211; Browse through all international teams and players</span></p>
<p><strong style="color: #99cc00; font-family: georgia, palatino; font-size: large;"><a href="https://play.google.com/store/apps/details?id=com.LiveCricket2013&#038;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5MaXZlQ3JpY2tldDIwMTMiXQ." target="_blank" rel="nofollow"><span style="color: #99cc00;">5. inditv.Live Cricket</span></a></strong></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/inditvlive.jpg"><img loading="lazy" decoding="async" data-attachment-id="2692" data-permalink="https://www.amazingthings.in/best-android-applications-for-ipl-6.html/inditvlive" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/inditvlive-e1366617572584.jpg?fit=512%2C288&amp;ssl=1" data-orig-size="512,288" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="inditvlive" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/inditvlive-e1366617572584.jpg?fit=300%2C168&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/inditvlive-e1366617572584.jpg?fit=512%2C288&amp;ssl=1" class="alignnone size-full wp-image-2692" alt="inditvlive" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/04/inditvlive-e1366617572584.jpg?resize=512%2C288" width="512" height="288" data-recalc-dims="1" /></a></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">It is an application to watch IPL matches with 2G or 3G network. The best part of it is, it works smoothly without flash player. Gives you access to some nice channels such as Sony Six for free. So don&#8217;t miss IPL action keep yourself updated.</span></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/best-android-applications-for-ipl-6.html">Best Android Applications for IPL 6</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2661</post-id>	</item>
		<item>
		<title>Encrypt Connection String in Asp.net</title>
		<link>https://www.amazingthings.in/encrypt-connection-string-in-aspnet.html</link>
					<comments>https://www.amazingthings.in/encrypt-connection-string-in-aspnet.html#respond</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Sun, 03 Mar 2013 17:03:45 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[how to encrypt connection string in asp.net]]></category>
		<category><![CDATA[how to encrypt connection string inside web.config file in asp.net]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=2380</guid>

					<description><![CDATA[<p>How to encrypt Connection string in Web.Config file using Asp.Net While developing web projects we generally keep our Connection String under the Web.config, which get stored in plain text format which anybody can read. Connection String contains database connections, username, password etc. which is threat to your secured data. The best idea is to keep [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/encrypt-connection-string-in-aspnet.html">Encrypt Connection String in Asp.net</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong style="color: #ff9900; font-family: georgia, palatino; font-size: medium;">How to encrypt Connection string in Web.Config file using Asp.Net</strong></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">While developing web projects we generally keep our Connection String under the Web.config, which get stored in plain text format which anybody can read. Connection String contains database connections, username, password etc. which is threat to your secured data.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">The best idea is to keep our connection string in encrypted format which is not easily readable and which makes your connection string safe.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;"><strong>HOW TO ENCRYPT CONNECTION STRING</strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">1. First Create web project in asp.net, then add connection details to web.config file.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">2. Go to Start &gt;&nbsp;&nbsp;All Programs &gt;&gt; Microsoft visual studio 2008 &gt;&gt; Visual Studio Tools &gt;&gt; Visual Studio 2012 Command Prompt</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">After Opening Command prompt type following command&nbsp;aspnet_regiis.exe -pef &#8220;connectionStrings&#8221;&nbsp;&#8220;C:\VisualStudio2008\Authorization&#8221;</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">After that you will get a message stating &#8220;Encrypting configuration section… Succeeded!&#8221;.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Now when you will open your web.config file you will find encrypted connection string.</span></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/encrypt-connection-string-in-aspnet.html">Encrypt Connection String in Asp.net</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/encrypt-connection-string-in-aspnet.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2380</post-id>	</item>
		<item>
		<title>Use AjaxFileUpload Control in Visual Studio 2012</title>
		<link>https://www.amazingthings.in/use-ajaxfileupload-control-in-visual.html</link>
					<comments>https://www.amazingthings.in/use-ajaxfileupload-control-in-visual.html#respond</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Mon, 07 Jan 2013 11:21:26 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[AjaxFileUpload control]]></category>
		<category><![CDATA[How to use AjaxFileUpload control in visual studio 2012]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=2140</guid>

					<description><![CDATA[<p>While developing a project you might come across a situation where you need to upload multiple files at a time. If you working on Asp.net project and you come across similar situation no need to worry you have nice options to accomplish this task. We can make use of AjaxFileUpload Control. It offers several features. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/use-ajaxfileupload-control-in-visual.html">Use AjaxFileUpload Control in Visual Studio 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;">
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1">While developing a project you might come across a situation where you need to upload multiple files at a time. If you working on Asp.net project and you come across similar situation no need to worry you have nice options to accomplish this task.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1">We can make use of <strong><span style="color: #99cc00;" data-mce-mark="1">AjaxFileUpload</span></strong> Control. It offers several features.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1"><strong>1. Upload multiple files at a time.</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1"><strong>2. Progress bar to display file upload status.</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1"><strong>3. Drag and drop facility.</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1">In order to use AjaxFileUpload control first you need to add AjaxControlToolkit to your application, wanted to learn how to do it? Please refer my previous post on <a title="AjaxControlToolkit" href="http://www.amazingthings.in/2012/12/add-ajaxcontroltoolkit-to-visual-studio-2012.html" target="_blank">How to add AjaxControlToolkit to Visual Studio 2012</a>.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">The best part of this control is you can control which file types you want to upload. You can make use of <strong style="font-family: georgia, palatino; font-size: medium;">AllowedFileTypes</strong> property. You can simply allow different file types&nbsp;separated&nbsp;by commas in <strong style="font-family: georgia, palatino; font-size: medium;">AllowedFileTypes</strong> control.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="http://www.amazingthings.in/2013/01/use-ajaxfileupload-control-in-visual-studio-2012.html/ajaxupload" rel="attachment wp-att-2172"><img decoding="async" data-attachment-id="2172" data-permalink="https://www.amazingthings.in/use-ajaxfileupload-control-in-visual.html/ajaxupload" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/01/AjaxUpload.gif?fit=%2C&amp;ssl=1" data-orig-size="" data-comments-opened="1" data-image-meta="[]" data-image-title="AjaxUpload" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/01/AjaxUpload.gif?fit=300%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/01/AjaxUpload.gif?fit=1024%2C1024&amp;ssl=1" class="alignnone size-full wp-image-2172" alt="AjaxUpload" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/01/AjaxUpload.gif?w=696" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">&nbsp;</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Using this Control is very simple you just need &nbsp;to drag this control from ToolBox and drop it on your .aspx page, add directive to <strong>register assembly</strong> and <strong>add script manager</strong> and you are all set to use <strong>AjaxFileUpload</strong> control. Registering assembly and adding script manager shown in code given below.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><code lang="asp">//&nbsp;Register&nbsp;Assembly<br />
< %@&nbsp;Register&nbsp;assembly="AjaxControlToolkit"&nbsp;namespace="AjaxControlToolkit"&nbsp;tagprefix="asp"&nbsp;%></p>
<p>//&nbsp;Add&nbsp;Script&nbsp;Manager<br />
<asp:scriptmanager &nbsp;Id="Scriptmanager1"&nbsp;runat="server"></asp:scriptmanager></p>
<p>//&nbsp;AjaxFileUpload&nbsp;Control<br />
<asp:ajaxfileupload &nbsp;ID="AjaxFileUpload1"&nbsp;runat="server"></asp:ajaxfileupload></code></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>AjaxFileUpload&nbsp;</strong>Control Properties :</span></p>
<ul style="text-align: justify;">
<li><span style="font-family: georgia, palatino; font-size: medium;"><strong>ThrobberID</strong>&nbsp;&#8211; The ID of a control that is shown while the file is uploading. The throbber&nbsp;image is displayed for browsers that do not support the HTML5 File API.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;"><strong>ContextKeys</strong>&nbsp;&#8211; A dictionary that can be used to pass information to the server when a file is uploaded.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;"><strong>MaximumNumberOfFiles</strong>&nbsp;&#8211; This property enables you to limit the number of files that a user can add to the upload queue.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;"><strong>AllowedFileTypes</strong>&nbsp;&#8211; This property enables you to restrict the types of files that can be uploaded. You can assign a comma delimited list of file extensions to this property.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;"><strong>IsInFileUploadPostBack</strong>&nbsp;&#8211; This property has the value true when a page is created in response to an AjaxFileUpload asynchronous postback.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;"><strong>OnClientUploadComplete</strong>&nbsp;&#8211; The name of a JavaScript function executed in the client-side after a file is uploaded successfully.</span></li>
<li><span style="font-family: georgia, palatino; font-size: medium;"><strong>OnClientUploadError</strong>&nbsp;&#8211; The name of a JavaScript function executed in the client-side if the file upload failed.</span></li>
</ul>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/use-ajaxfileupload-control-in-visual.html">Use AjaxFileUpload Control in Visual Studio 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/use-ajaxfileupload-control-in-visual.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2140</post-id>	</item>
		<item>
		<title>Add AjaxControltoolkit to Visual Studio 2012</title>
		<link>https://www.amazingthings.in/add-ajaxcontroltoolkit-to-visual-studio.html</link>
					<comments>https://www.amazingthings.in/add-ajaxcontroltoolkit-to-visual-studio.html#respond</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Sun, 30 Dec 2012 22:35:32 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[add ajax control toolkit to asp.net 4.5]]></category>
		<category><![CDATA[how to add ajax control toolkit to asp.net 4.5]]></category>
		<category><![CDATA[how to add ajaxcontroltoolkit to visual studio 2012]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=2115</guid>

					<description><![CDATA[<p>Ajax control toolkit contains rich set of controls which are used build highly responsive and interactive web applications. Ajax Control toolkit contains more than 40 controls to choose from which includes ColorPicker, AutoComplete, Calender, Accordion, Watermark, etc.&#160;Ajax Control Toolkit&#8217;s recently updated version came in&#160;September 2012.&#160; Now if you want to add Ajax Control toolkit to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/add-ajaxcontroltoolkit-to-visual-studio.html">Add AjaxControltoolkit to Visual Studio 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;">
<p style="text-align: justify;"><span style="color: #99cc00;"><strong style="font-family: georgia, palatino; font-size: medium;">Ajax control toolkit</strong></span><span style="font-family: georgia, palatino; font-size: medium;"> contains rich set of controls which are used build highly responsive and interactive web applications. Ajax Control toolkit contains more than 40 controls to choose from which includes </span><strong style="font-family: georgia, palatino; font-size: medium;"><span style="font-family: georgia, palatino; font-size: medium;">ColorPicker, AutoComplete, Calender, Accordion, Watermark, etc.</span></strong><span style="font-family: georgia, palatino; font-size: medium;">&nbsp;Ajax Control Toolkit&#8217;s recently updated version came in</span><strong style="font-family: georgia, palatino; font-size: medium;"><span style="font-family: georgia, palatino; font-size: medium;">&nbsp;September 2012.&nbsp;</span></strong></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1">Now if you want to add Ajax Control toolkit to your asp.net project in Visual Studio 2012, you have two options.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium; color: #ff6600;" data-mce-mark="1"><strong>1. Using NuGet Package Manager</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1">This is very simple way to add AjaxControlToolkit to your asp.net project. Just right click on your project under Solution Explorer &gt; Manage NuGet Packages &gt; Online and then select AjaxControlToolkit and then install it.</span></p>
<p style="text-align: justify;"><img loading="lazy" decoding="async" data-attachment-id="2122" data-permalink="https://www.amazingthings.in/add-ajaxcontroltoolkit-to-visual-studio.html/nugetpackage" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/NuGetPackage.png?fit=500%2C330&amp;ssl=1" data-orig-size="500,330" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="NuGetPackage" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/NuGetPackage.png?fit=300%2C198&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/NuGetPackage.png?fit=500%2C330&amp;ssl=1" class="aligncenter size-full wp-image-2122" alt="NuGetPackage" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/NuGetPackage.png?resize=500%2C330" width="500" height="330" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/NuGetPackage.png?w=500&amp;ssl=1 500w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/NuGetPackage.png?resize=300%2C198&amp;ssl=1 300w" sizes="(max-width: 500px) 100vw, 500px" data-recalc-dims="1" /></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1"><strong><span style="color: #ff6600;" data-mce-mark="1">2. Add Manually</span>&nbsp;</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1"><strong>Step 1 : Download</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1">Go to http://ajaxcontroltoolkit.codeplex.com &gt; Downloads &gt; Click on Ajax Control Toolkit 4 &gt; Download.</span></p>
<p style="text-align: justify;"><a href="http://www.amazingthings.in/2012/12/add-ajaxcontroltoolkit-to-visual-studio-2012.html/croppercapture1-6" rel="attachment wp-att-2123"><img decoding="async" data-attachment-id="2123" data-permalink="https://www.amazingthings.in/add-ajaxcontroltoolkit-to-visual-studio.html/croppercapture1-6" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture12.gif?fit=%2C&amp;ssl=1" data-orig-size="" data-comments-opened="1" data-image-meta="[]" data-image-title="DownloadAjaxToolkit" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture12.gif?fit=300%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture12.gif?fit=1024%2C1024&amp;ssl=1" class="alignnone size-full wp-image-2123" alt="DownloadAjaxToolkit" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture12.gif?w=696" data-recalc-dims="1" /></a></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1"><strong>Step 2 : Extract</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;" data-mce-mark="1">Right Click Zip file &gt; Properties &gt; Unblock &gt; And then Extract file</span></p>
<p style="text-align: justify;"><a href="http://www.amazingthings.in/2012/12/add-ajaxcontroltoolkit-to-visual-studio-2012.html/croppercapture2" rel="attachment wp-att-2125"><img loading="lazy" decoding="async" data-attachment-id="2125" data-permalink="https://www.amazingthings.in/add-ajaxcontroltoolkit-to-visual-studio.html/croppercapture2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture2.gif?fit=773%2C630&amp;ssl=1" data-orig-size="773,630" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Unblock" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture2.gif?fit=300%2C244&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture2.gif?fit=696%2C567&amp;ssl=1" class="alignnone size-full wp-image-2125" alt="Unblock" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture2.gif?resize=696%2C567" width="696" height="567" data-recalc-dims="1" /></a></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Step 3 : Add toolkit to Visual Studio</strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Right Click on your Toolbox Menus &gt; Click on add tab &gt; Name it as &#8220;AjaxControlToolkit&#8221; &gt; Right Click on newly added tab &gt; Choose Items &gt; Browse &gt; Select extracted AjaxControlToolkit.dll &gt; Hit ok and there you go.</span></p>
<p style="text-align: justify;"><a href="http://www.amazingthings.in/2012/12/add-ajaxcontroltoolkit-to-visual-studio-2012.html/addtovisualstudio" rel="attachment wp-att-2126"><img loading="lazy" decoding="async" data-attachment-id="2126" data-permalink="https://www.amazingthings.in/add-ajaxcontroltoolkit-to-visual-studio.html/addtovisualstudio" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/AddToVisualStudio.gif?fit=983%2C639&amp;ssl=1" data-orig-size="983,639" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="AddToVisualStudio" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/AddToVisualStudio.gif?fit=300%2C195&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/AddToVisualStudio.gif?fit=696%2C452&amp;ssl=1" class="alignnone size-full wp-image-2126" alt="AddToVisualStudio" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/AddToVisualStudio.gif?resize=696%2C452" width="696" height="452" data-recalc-dims="1" /></a></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Select the way which suits you add AjaxControlToolkit to your toolbox and enjoy making a responsive, interactive web applications.</span></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/add-ajaxcontroltoolkit-to-visual-studio.html">Add AjaxControltoolkit to Visual Studio 2012</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/add-ajaxcontroltoolkit-to-visual-studio.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2115</post-id>	</item>
		<item>
		<title>30 Amazing Free Online Web Applications</title>
		<link>https://www.amazingthings.in/30-amazing-free-online-web-applications.html</link>
					<comments>https://www.amazingthings.in/30-amazing-free-online-web-applications.html#respond</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Sun, 30 Dec 2012 04:40:25 +0000</pubDate>
				<category><![CDATA[Applications and Softwares]]></category>
		<category><![CDATA[web Applications]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=1984</guid>

					<description><![CDATA[<p>Today I am listing some free online web applications which might be very helpful for you to process your daily works such as editing, designing, uploading, bookmarking and publishing. All these apps are available online for free and require no installation. &#160; Click the images for the link. Reduce the file size of your photos [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/30-amazing-free-online-web-applications.html">30 Amazing Free Online Web Applications</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><br />
Today I am listing some </span><strong style="font-family: georgia, palatino; font-size: medium;">free online web applications</strong><span style="font-family: georgia, palatino; font-size: medium;"> which might be very helpful for you to process your daily works such as editing, designing, uploading, bookmarking and publishing. All these apps are available online for free and require no installation.</span></p>
<div><span style="font-family: georgia, palatino; font-size: medium;"><strong>&nbsp;</strong></span></div>
<table style="width: 620px;" border="0">
<caption><span style="font-family: georgia, palatino; font-size: medium;"><strong>Click the images for the link.</strong></span></caption>
<tbody>
<tr>
<td><a href="http://www.jpegmini.com" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2070" data-permalink="https://www.amazingthings.in/jpegmini-search-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/jpegmini-search1.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1354094866&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="jpegmini-search" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/jpegmini-search1.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/jpegmini-search1.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2070" alt="jpegmini-search" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/jpegmini-search1.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Reduce the file size of your photos by up to 5x, while keeping their original quality intact.<br />
</strong></span></td>
</tr>
<tr>
<td><a href="https://www.filemail.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2018" data-permalink="https://www.amazingthings.in/filemail_transparent_xl_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/filemail_transparent_xl_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="filemail_transparent_xl_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/filemail_transparent_xl_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/filemail_transparent_xl_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2018" alt="filemail_transparent_xl_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/filemail_transparent_xl_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Easy way to send large files up to 2 GB. Fast, Easy and Secure.</strong></span></td>
</tr>
<tr>
<td><a href="https://penzu.com/home" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2017" data-permalink="https://www.amazingthings.in/classroom_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/classroom_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="classroom_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/classroom_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/classroom_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2017" alt="classroom_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/classroom_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Option for everyone who wanted to keep a diary or journal with different journal types publish instantly.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.befunky.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2015" data-permalink="https://www.amazingthings.in/befunkylogo_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/BeFunkyLogo_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="BeFunkyLogo_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/BeFunkyLogo_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/BeFunkyLogo_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2015" alt="BeFunkyLogo_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/BeFunkyLogo_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>An online image editor.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.myfonts.com/WhatTheFont/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2019" data-permalink="https://www.amazingthings.in/myfonts-logo_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/myfonts-logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="myfonts-logo_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/myfonts-logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/myfonts-logo_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2019" alt="myfonts-logo_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/myfonts-logo_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Want to know font in image file?Just upload the image and app will try to find font from database.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.screenr.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2024" data-permalink="https://www.amazingthings.in/screenr_logo_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/screenr_logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screenr_logo_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/screenr_logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/screenr_logo_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2024" alt="screenr_logo_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/screenr_logo_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Screenr&nbsp;is the best screen recording app. It allows you to record your screen along with your voice.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.screenleap.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2013" data-permalink="https://www.amazingthings.in/0a9c2_iphone_screenleap_logo_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/0a9c2_iphone_screenleap_logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="0a9c2_iphone_screenleap_logo_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/0a9c2_iphone_screenleap_logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/0a9c2_iphone_screenleap_logo_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2013" alt="0a9c2_iphone_screenleap_logo_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/0a9c2_iphone_screenleap_logo_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>ScreenLeap&nbsp;is the online screen sharing tool. The best part of it is, there is no need of registering.</strong></span></td>
</tr>
<tr>
<td><a href="http://soundcloud.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2025" data-permalink="https://www.amazingthings.in/soundcloud-logo_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/soundcloud-logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="soundcloud-logo_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/soundcloud-logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/soundcloud-logo_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2025" alt="soundcloud-logo_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/soundcloud-logo_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>SoundCloud&nbsp;is the app which allow you to upload audios and share it with others.</strong></span></td>
</tr>
<tr>
<td><a href="http://tools.pingdom.com/fpt/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2023" data-permalink="https://www.amazingthings.in/pingdom_thumb_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/pingdom_thumb_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="pingdom_thumb_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/pingdom_thumb_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/pingdom_thumb_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2023" alt="pingdom_thumb_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/pingdom_thumb_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>With&nbsp;pingdom&nbsp;you can check load time of any website. It also give statistics about the page loading.</strong></span></td>
</tr>
<tr>
<td><a href="http://pen.io/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2022" data-permalink="https://www.amazingthings.in/penio_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Penio_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Penio_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Penio_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Penio_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2022" alt="Penio_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Penio_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Wanted to write without blog and publish it within seconds then&nbsp;Pen.io&nbsp;is the best solution.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.omegle.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2020" data-permalink="https://www.amazingthings.in/omegle_logo_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/omegle_logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="omegle_logo_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/omegle_logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/omegle_logo_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2020" alt="omegle_logo_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/omegle_logo_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Getting bored wanted to spend some time with strangers, Omegle&nbsp;gives you the platform.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.online-convert.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2021" data-permalink="https://www.amazingthings.in/online-convert-logo_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/online-convert-logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="online-convert-logo_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/online-convert-logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/online-convert-logo_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2021" alt="online-convert-logo_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/online-convert-logo_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Online convert&nbsp;converts Sound, Video, Image, etc. into different formats online.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.css3generator.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2016" data-permalink="https://www.amazingthings.in/capture_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Aakash Doshi&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1356835601&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Capture_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2016" alt="Capture_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>CSS3 generator&nbsp;help you out to generate code for several css3 effects online.</strong></span></td>
</tr>
<tr>
<td><a href="https://about.me/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2014" data-permalink="https://www.amazingthings.in/aboutme_380x128_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aboutme_380x128_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="aboutme_380x128_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aboutme_380x128_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aboutme_380x128_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2014" alt="aboutme_380x128_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aboutme_380x128_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>With&nbsp;About.me&nbsp;you can create your own portfolio.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.duckduckgo.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2041" data-permalink="https://www.amazingthings.in/duckduckgo_logo" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/duckduckgo_logo.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="duckduckgo_logo" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/duckduckgo_logo.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/duckduckgo_logo.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2041" alt="duckduckgo_logo" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/duckduckgo_logo.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>DuckDuckGo&nbsp;is very clean search engine with no spam and search result suggestions.</strong></span></td>
</tr>
<tr>
<td><a href="http://coderun.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2054" data-permalink="https://www.amazingthings.in/capture_mini-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture_mini1.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Aakash Doshi&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1356843266&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Capture_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture_mini1.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture_mini1.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2054" alt="Capture_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture_mini1.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>CodeRun&nbsp;is browser based IDE which help us to develop Asp.net, Php, Ajax, JQuery and run them online.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.net2ftp.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2056" data-permalink="https://www.amazingthings.in/net2ftp_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/net2ftp_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="net2ftp_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/net2ftp_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/net2ftp_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2056" alt="net2ftp_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/net2ftp_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>net2ftp&nbsp;is Free, Simple and Browser based ftp client.</strong></span></td>
</tr>
<tr>
<td><a href="https://droplr.com/hello" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2059" data-permalink="https://www.amazingthings.in/screen-shot-2012-12-06-at-1-22-37-pm_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Screen-Shot-2012-12-06-at-1.22.37-PM_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Screen-Shot-2012-12-06-at-1.22.37-PM_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Screen-Shot-2012-12-06-at-1.22.37-PM_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Screen-Shot-2012-12-06-at-1.22.37-PM_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2059" alt="Screen-Shot-2012-12-06-at-1.22.37-PM_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Screen-Shot-2012-12-06-at-1.22.37-PM_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>droplr.com&nbsp;is the place where you can upload your picture and share on social network.</strong></span></td>
</tr>
<tr>
<td><a href="http://pixlr.com/o-matic/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2058" data-permalink="https://www.amazingthings.in/pixlr-o-matic_logo_mini" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Pixlr-o-matic_logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Pixlr-o-matic_logo_mini" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Pixlr-o-matic_logo_mini.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Pixlr-o-matic_logo_mini.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2058" alt="Pixlr-o-matic_logo_mini" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Pixlr-o-matic_logo_mini.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td>
<div id="id" style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Pixlr is an online image editor with lots of editing effects. Android, iphone and windows app available.</strong></span></div>
</td>
</tr>
<tr>
<td><a href="http://reader.9lessons.info/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2065" data-permalink="https://www.amazingthings.in/9lessonsreader-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/9lessonsReader.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="9lessonsReader" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/9lessonsReader.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/9lessonsReader.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2065" alt="9lessonsReader" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/9lessonsReader.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Not able to access popular blogs powered by wordpress and blogspots in your office paste your code here.</strong></span></td>
</tr>
<tr>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong><a href="http://builder.cheezburger.com/builder/rage" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="2069" data-permalink="https://www.amazingthings.in/images" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/images.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="images" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/images.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/images.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2069" alt="images" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/images.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></a></strong></span></td>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong>Create your own Rage comics,Memes,Troll pics.</strong></span></td>
</tr>
<tr>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong><a href="http://www.thinglink.com/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="2075" data-permalink="https://www.amazingthings.in/thinglink-logo_small" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thinglink-logo_small.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="thinglink-logo_small" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thinglink-logo_small.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thinglink-logo_small.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2075" alt="thinglink-logo_small" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thinglink-logo_small.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></a></strong></span></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Create rich images with music, video, sound, text and more.Share and discover deeper stories through images</strong></span></td>
</tr>
<tr>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong><a href="https://www.google.co.in/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;cad=rja&amp;ved=0CDEQFjAA&amp;url=https%3A%2F%2Fannotary.com%2F&amp;ei=WqrfUJGhEYizrAeL4IH4BQ&amp;usg=AFQjCNF9HtOz2E1Gt7M2MSNBxE5m4azWPg&amp;sig2=8WVTA-YNUoTMEtC0AzjG2Q&amp;bvm=bv.1355534169,d.bmk" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="2076" data-permalink="https://www.amazingthings.in/capture-3" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture1.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Aakash Doshi&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1356853622&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Capture" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture1.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture1.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2076" alt="Capture" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture1.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></a></strong></span></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Annotary helps you bookmark pages, make highlights, take notes, and share with others.</p>
<p></strong></span></td>
</tr>
<tr>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong><a href="http://www.snippic.com/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="2077" data-permalink="https://www.amazingthings.in/capture-4" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture2.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Aakash Doshi&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1356853905&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Capture" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture2.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture2.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2077" alt="Capture" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture2.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></a></strong></span></td>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong>Snippic: Photobooth In Your Browser.If your webcam is sitting idle then snippic might help you.</strong></span></td>
</tr>
<tr>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2078" data-permalink="https://www.amazingthings.in/capture-5" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture3.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Aakash Doshi&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1356854457&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Capture" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture3.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture3.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2078" alt="Capture" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture3.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>@bubbles is a new kind of mail service. scribble your thoughts, stick photos, put handwritten signatures and more &#8230;</strong></span></td>
</tr>
<tr>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong><a href="http://soundgecko.com/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="2089" data-permalink="https://www.amazingthings.in/sd" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/sd.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Aakash Doshi&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1356855541&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="sd" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/sd.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/sd.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2089" alt="sd" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/sd.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></a></strong></span></td>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong>Turn your blog post into Audible mp3 with just a click.Share or Download available</strong></span></td>
</tr>
<tr>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong><a href="http://www.wibbitz.com/" target="_blank" rel="nofollow"><img loading="lazy" decoding="async" data-attachment-id="2088" data-permalink="https://www.amazingthings.in/logo" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/logo.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="logo" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/logo.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/logo.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2088" alt="logo" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/logo.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></a></strong></span></td>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong>Turn your blog post into interactive video with just a click.</strong></span></td>
</tr>
<tr>
<td><a href="http://whichloadsfaster.com/" target="_blank" rel="nofollow"><img decoding="async" data-attachment-id="2102" data-permalink="https://www.amazingthings.in/30-amazing-free-online-web-applications.html/which-loads-faster-logo_0-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/which-loads-faster-logo_0.jpg?fit=%2C&amp;ssl=1" data-orig-size="" data-comments-opened="1" data-image-meta="[]" data-image-title="which-loads-faster-logo_0" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/which-loads-faster-logo_0.jpg?fit=300%2C300&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/which-loads-faster-logo_0.jpg?fit=1024%2C1024&amp;ssl=1" class="aligncenter size-full wp-image-2102" alt="which-loads-faster-logo_0" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/which-loads-faster-logo_0.jpg?w=696" data-recalc-dims="1" /></a></td>
<td><span style="font-family: georgia, palatino; font-size: medium;"><strong>whichloadsfaster is one of my favorite web app where I can compete with my rival with respect to speed.</strong></span></td>
</tr>
<tr>
<td><a href="http://www.responsinator.com/?url=www.amazingthings.in" target="_blank"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2104" data-permalink="https://www.amazingthings.in/30-amazing-free-online-web-applications.html/capture-6" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture4.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Aakash Doshi&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1356859858&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Capture" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture4.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture4.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2104" alt="Capture" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Capture4.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Responsinator is one of my favorite apps. It checks your website responsiveness on all popular devices&nbsp;</strong></span></td>
</tr>
<tr>
<td><a href="http://saveandsearch.com/" target="_blank" rel="nofollow"><span style="font-family: georgia, palatino; font-size: medium;"><strong><img loading="lazy" decoding="async" data-attachment-id="2105" data-permalink="https://www.amazingthings.in/30-amazing-free-online-web-applications.html/sns_logo" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/SnS_Logo.jpg?fit=250%2C100&amp;ssl=1" data-orig-size="250,100" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="SnS_Logo" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/SnS_Logo.jpg?fit=250%2C100&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/SnS_Logo.jpg?fit=250%2C100&amp;ssl=1" class="aligncenter size-full wp-image-2105" alt="SnS_Logo" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/SnS_Logo.jpg?resize=250%2C100" width="250" height="100" data-recalc-dims="1" /></strong></span></a></td>
<td style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><strong>Save and Search allows you to save anything quickly, that you want to remember for tomorrow.&nbsp;<b>(Must Try)</b>&nbsp;</strong></span></td>
</tr>
</tbody>
</table>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">You are welcome to share if you know about any free web based application which our readers may like.</span></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/30-amazing-free-online-web-applications.html">30 Amazing Free Online Web Applications</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/30-amazing-free-online-web-applications.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1984</post-id>	</item>
		<item>
		<title>Asp.Net LogIn and CreateUserWizard Controls</title>
		<link>https://www.amazingthings.in/aspnet-login-and-createuserwizard.html</link>
					<comments>https://www.amazingthings.in/aspnet-login-and-createuserwizard.html#respond</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Sun, 16 Dec 2012 13:08:44 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Asp.Net LogIn and CreateNewUserWizard Controls]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=1728</guid>

					<description><![CDATA[<p>Title : Asp.net Log In and CreateNewUser Control Description :  Whenever we wanted to develop Log In and register page we think of Text Box to enter required details and then a button to submit that data to database.  Asp.Net came with few controls they gives a ready Log In and Create New User control, by making [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/aspnet-login-and-createuserwizard.html">Asp.Net LogIn and CreateUserWizard Controls</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong style="color: #ff6600; font-family: georgia, palatino; font-size: large;"><span style="color: #ff6600; font-family: georgia, palatino; font-size: large;" data-mce-mark="1">Title :</span> <span style="color: #ff6600; font-family: georgia, palatino; font-size: large;" data-mce-mark="1">Asp.net Log In and CreateNewUser Control</span></strong></p>
<p><span style="color: #ff6600; font-family: georgia, palatino; font-size: medium;" data-mce-mark="1"><strong>Description : </strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Whenever we wanted to develop Log In and register page we think of Text Box to enter required details and then a button to submit that data to database.  Asp.Net came with few controls they gives a ready Log In and Create New User control, by making use of these controls we can easily develop Log In page.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">All you need to do is just <strong>drag and drop Log In and Create New User Control</strong> on your webpage and <strong>THAT&#8217;S IT, </strong>rest work is done by Asp.Net controls. <strong>AMAZING RIGHT?</strong></span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">Both controls comes with predefined templates, even you can<strong> style</strong> them as per your need, by making use of <strong>LayoutTemplate</strong>.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">After adding those controls it automatically adds a database in your back end, add columns to it and whenever you add new user it  fires query and add that user data into database. The best part of it is it Stores <strong>password</strong> in <strong>ENCRYPTED</strong> as well as <strong>HASHED</strong> format.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">There are few other controls which are add on to these controls.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><strong>Log In Name, Log In View, Log In Status, Password Recovery, Change Password </strong>which gives power to these two controls.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;">You just need to add few elements into your web.config file. </span></p>
<p><span style="font-size: medium;" data-mce-mark="1"><strong><span style="color: #ff6600; font-family: georgia, palatino;" data-mce-mark="1">Demo : </span></strong></span></p>
<p><a href="http://www.amazingthings.in/2012/12/asp-net-login-and-createuserwizard-controls.html/croppercapture1-5" rel="attachment wp-att-1820"><img loading="lazy" decoding="async" data-attachment-id="1820" data-permalink="https://www.amazingthings.in/aspnet-login-and-createuserwizard.html/croppercapture1-5" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture11.gif?fit=472%2C408&amp;ssl=1" data-orig-size="472,408" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CropperCapture[1]" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture11.gif?fit=300%2C259&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture11.gif?fit=472%2C408&amp;ssl=1" class="alignnone size-full wp-image-1820" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/CropperCapture11.gif?resize=472%2C408" alt="CropperCapture[1]" width="472" height="408" data-recalc-dims="1" /></a></p>
<p><span style="color: #ff6600; font-family: georgia, palatino; font-size: medium;" data-mce-mark="1"><strong>.aspx</strong></span> <strong><span style="color: #ff6600; font-size: medium; font-family: georgia, palatino;" data-mce-mark="1">Code</span></strong></p>
<p><span style="color: #ff6600;"><strong>LogIn.aspx</strong></span></p>
<p><code></code></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<form id="form1">
<div>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
<p><strong>Don&#8217;t have an Account ?</strong></p>
<p>&nbsp;</p>
</form>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><span style="color: #ff6600;"><strong>Register.aspx</strong></span></p>
<p><code>&lt; %@ Page Language="C#" AutoEventWireup="true" CodeFile="Register.aspx.cs" Inherits="_Default" %&gt;</code></p>
<p>&lt; !DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;</p>
<p>&nbsp;</p>
<style type="text/css">
        .auto-style1 {<br />
            height: 28px;<br />
        }<br />
    </style>
<p>&nbsp;</p>
<form id="form1">
<div>
<p>&nbsp;</p>
<table style="font-family: Verdana; font-size: 100%; width: 301px;">
<tbody>
<tr>
<td style="color: white; background-color: #5d7b9d; font-size: Medium; font-weight: bold;" colspan="2" align="center">Sign Up for Your New Account</td>
</tr>
<tr>
<td style="font-size: Small;" align="right">User Name:</td>
<td>
*</td>
</tr>
<tr>
<td style="font-size: Small;" align="right">Password:</td>
<td>
*</td>
</tr>
<tr>
<td style="font-size: Small;" align="right">Confirm Password:</td>
<td>
*</td>
</tr>
<tr>
<td style="font-size: Small;" align="right">E-mail:</td>
<td>
*</td>
</tr>
<tr>
<td style="font-size: Small;" align="right">Security Question:</td>
<td>
*</td>
</tr>
<tr>
<td style="font-size: Small;" align="right">Security Answer:</td>
<td>
*</td>
</tr>
<tr>
<td class="auto-style1" colspan="2" align="center"></td>
</tr>
<tr>
<td style="color: red;" colspan="2" align="center"></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<table style="font-family: Verdana; font-size: 100%; width: 301px;">
<tbody>
<tr>
<td style="color: white; background-color: #5d7b9d; font-size: Medium; font-weight: bold;" colspan="2" align="center">Complete</td>
</tr>
<tr>
<td>Your account has been successfully created.</td>
</tr>
<tr>
<td colspan="2" align="right"></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
</div>
</form>
<p>&nbsp;</p>
<p><span style="color: #ff6600;"><strong>Home.aspx</strong></span></p>
<p><code>&lt; %@ Page Language="C#" AutoEventWireup="true" CodeFile="Home.aspx.cs" Inherits="Home" %&gt;</code></p>
<p>&lt; !DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;</p>
<p>&nbsp;</p>
<form id="form1">
<div>
<p><a href="Login.aspx" target="_blank" rel="nofollow">Login.aspx</a> | <a href="Register.aspx" target="_blank" rel="nofollow">Register.aspx</a></p>
<hr />
<p>&nbsp;</p>
<p>Welcome ,</p>
<p>Please Login or create a new account!</p>
<p>&nbsp;</p>
</div>
</form>
<p>&nbsp;</p>
<p><span style="color: #ff6600;"><strong>Web.Config</strong></span></p>
<p><code lang="xml[lines]">&lt; ?xml version="1.0"?&gt;<br />
<!-- Note: As an alternative to hand editing this file you can use the web admin tool to configure settings for your application. Use the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\vx.x\Config
--></p>
<p></code></p>
<section></section>
<p>&nbsp;</p>
<section></section>
<section></section>
<section></section>
<section></section>
<p>&nbsp;</p>
<p><!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. --></p>
<p><!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
--><br />
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.

<customerrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm"></error>
<error statusCode="404" redirect="FileNotFound.htm"></error>
</customerrors>
--></p>
<p><!-- The system.webServer section is required for running ASP.NET AJAX under Internet Information Services 7.0. It is not necessary for previous version of IIS. --></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/aspnet-login-and-createuserwizard.html">Asp.Net LogIn and CreateUserWizard Controls</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/aspnet-login-and-createuserwizard.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1728</post-id>	</item>
		<item>
		<title>23 Amazing HD Live Wallpapers For Android</title>
		<link>https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html</link>
					<comments>https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html#respond</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Sun, 02 Dec 2012 20:49:52 +0000</pubDate>
				<category><![CDATA[Iphone and Android]]></category>
		<category><![CDATA[3D live wallpapers for android]]></category>
		<category><![CDATA[HD live wallpapers for android]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=1459</guid>

					<description><![CDATA[<p>Wanted to make home screen of your android cellphone beautiful, animated ?? Android offers you live wallpapers which gives a charming look to your home screen. And now think of &#160;live wallpaper which respond to your actions and offers 3D look then certainly you would like to go for it right? Here i will list [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html">23 Amazing HD Live Wallpapers For Android</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-family: georgia, palatino; font-size: medium; text-align: justify;">Wanted to make home screen of your android cellphone beautiful, animated ??</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Android offers you live wallpapers which gives a charming look to your home screen. And now think of &nbsp;live wallpaper which respond to your actions and offers 3D look then certainly you would like to go for it right?</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Here i will list some live wallpapers which will give you above mentioned features.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Excited to see them? Here we go!!</span></p>
<p style="text-align: justify;"><em><span style="font-size: medium;"><strong>Note :</strong> Download link at the bottom of the page.</span></em></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: large; color: #ff6600;"> <strong><a style="text-decoration: none;" title="3DeffectLiveWallpaper" href="https://play.google.com/store/apps/details?id=at.robbert.deepand&amp;feature=search_result#?t=W251bGwsMSwxLDEsImF0LnJvYmJlcnQuZGVlcGFuZCJd" target="_blank" rel="nofollow"><span style="text-decoration: initial; color: #ff6600;">3D Effect Live Wallpaper</span></a></strong></span></p>
<p style="text-align: justify;">I have just one word for this wallpaper AWESOME! It changes look of your home screen and make it 3D. You can feel 3D effect in android cellphone. It is similar IOS app &#8220;Deepend&#8221;. You can decide depth of screen, you can choose sensitivity, image. So its fully customizable and beautiful. So go for it guys and&nbsp;</p>
<p><iframe loading="lazy" src="http://www.youtube.com/embed/Pv8BixtR1gk?rel=0" frameborder="0" width="720" height="315"></iframe></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="MyBeachHD" href="https://play.google.com/store/apps/details?id=com.dualboot.apps.beachfree&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5kdWFsYm9vdC5hcHBzLmJlYWNoZnJlZSJd" target="_blank" rel="nofollow">My Beach HD Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Getting bore at office ?? Wanted to enjoy summer at your own Beach,then this live wallpaper will offer you that. Spend a warm summer day relaxing at your own private beach. You can make custom banners, custom airplane banners, automatic time of day based on location and so on.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/my-beach-hd.jpg"><img loading="lazy" decoding="async" data-attachment-id="1542" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/my-beach-hd" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/my-beach-hd.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="my beach hd" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/my-beach-hd.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/my-beach-hd.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1542" title="my beach hd" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/my-beach-hd.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/my-beach-hd.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/my-beach-hd.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: large;"><span style="color: #ff6600;"><strong><a style="text-decoration: none; color: #ff6600;" title="NotificationBubbles" href="https://play.google.com/store/apps/details?id=com.commind.bubbles&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5jb21taW5kLmJ1YmJsZXMiXQ.." target="_blank" rel="nofollow">Notification Bubbles Live Wallpaper</a></strong></span></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Pop bubbles to read and reply to messages and calls!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Features:</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">* Easy access to text messages and missed calls</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">* Get Facebook, Twitter, and Gmail notifications as bubbles on the screen</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">* Simply pop the bubble to read and reply</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">* Choose between different bubble styles</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">* Customize bubble colors</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">* Select one contact to show up as a heart, with super quick calling and texting</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/notification1.jpg"><img loading="lazy" decoding="async" data-attachment-id="1557" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/notification-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/notification1.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="notification" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/notification1.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/notification1.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1557" title="notification" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/notification1.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/notification1.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/notification1.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="SunRiseLiveWallpaper" href="https://play.google.com/store/apps/details?id=com.teragon.skyatdawnlw.lite&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS50ZXJhZ29uLnNreWF0ZGF3bmx3LmxpdGUiXQ.." target="_blank" rel="nofollow">Sun Rise Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">A fresh and spectacular animated scene of the sky at dawn for your wallpaper!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed.jpg"><img loading="lazy" decoding="async" data-attachment-id="1564" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/unnamed" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="unnamed" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1564" title="unnamed" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600;"><strong><span style="font-family: georgia, palatino; font-size: medium;"><a style="text-decoration: none; color: #ff6600;" title="PlanetScapes" href="https://play.google.com/store/apps/details?id=com.radiantwalls.planetscapesfree&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5yYWRpYW50d2FsbHMucGxhbmV0c2NhcGVzZnJlZSJd" target="_blank" rel="nofollow">Planet Scapes Live wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Amazing&#8230;.! Guys please do not miss this one true beauty. Turns your home screen into a Alien land and you will love it for sure. I must appreciate developer for his great work. Generally we find android live wallpapers where it just shows random line and patterns. This live wallpaper offers three different landscapes to try and all of them are beautiful.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/PlanetScapes.jpg"><img loading="lazy" decoding="async" data-attachment-id="1548" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/planetscapes" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/PlanetScapes.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="PlanetScapes" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/PlanetScapes.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/PlanetScapes.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1548" title="PlanetScapes" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/PlanetScapes.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/PlanetScapes.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/PlanetScapes.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="aCircuitBoard" href="https://play.google.com/store/apps/details?id=com.flyingpigs.lwp.circuitlight&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5mbHlpbmdwaWdzLmx3cC5jaXJjdWl0bGlnaHQiXQ.." target="_blank" rel="nofollow">aCircuit Board Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">It offers insight to your mobile phone. Tried nature and galaxy live wallpapers. Then give a try to this live wallpaper which is amazing and it brings a new look to your screen. It shows Binary Clock, Moving fan ans so on.!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aCircuitBoard.jpg"><img loading="lazy" decoding="async" data-attachment-id="1495" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/acircuitboard" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aCircuitBoard.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="aCircuitBoard" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aCircuitBoard.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aCircuitBoard.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1495" title="aCircuitBoard" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aCircuitBoard.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aCircuitBoard.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/aCircuitBoard.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><iframe loading="lazy" src="http://www.youtube.com/embed/jDP6VGRRmWM" frameborder="0" width="620" height="315"></iframe></span></p>
<p style="text-align: justify;"><span style="font-size: large;"><strong><span style="font-family: georgia, palatino; color: #ff6600;"><a style="text-decoration: none; color: #ff6600;" title="AutumnLiveWallpaper" href="https://play.google.com/store/apps/details?id=com.adinfinitum.autumn_livewallpaper&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5hZGluZmluaXR1bS5hdXR1bW5fbGl2ZXdhbGxwYXBlciJd" target="_blank" rel="nofollow">Autumn Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Red, yellow and green leaves fall slowly to the ground in autumn landscapes. Red, yellow and green leaves fall slowly to the ground in the most beautiful, colorful autumn landscapes. The 3D effects are just awesome. Gives a cool look to your screen.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Autumn.jpg"><img loading="lazy" decoding="async" data-attachment-id="1478" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/autumn" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Autumn.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Autumn" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Autumn.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Autumn.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1478" title="Autumn" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Autumn.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Autumn.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Autumn.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600;"><strong><span style="font-family: georgia, palatino; font-size: medium;"><a style="text-decoration: none; color: #ff6600;" title="PassageLWP" href="https://play.google.com/store/apps/details?id=com.driftwood.wallpaper.passage.free&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5kcmlmdHdvb2Qud2FsbHBhcGVyLnBhc3NhZ2UuZnJlZSJd" target="_blank" rel="nofollow">Passage Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">A quiet lantern-lit scene on your home screen. Stars twinkle in the background and clouds lazily drift past.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-2.jpg"><img loading="lazy" decoding="async" data-attachment-id="1561" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/unnamed-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-2.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="unnamed (2)" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-2.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-2.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1561" title="unnamed (2)" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-2.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-2.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-2.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="CelticGardenHd" href="https://play.google.com/store/apps/details?id=com.dualboot.apps.celticgardenfree&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5kdWFsYm9vdC5hcHBzLmNlbHRpY2dhcmRlbmZyZWUiXQ.." target="_blank" rel="nofollow">Celtic Garden HD</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">A serene, calming garden scene with a Celtic flare.</span><span style="font-family: georgia, palatino; font-size: medium;">Now with new themes, weather effects, butterflies, and more &#8211; your favorite Live Wallpaper is now even better!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-1.jpg"><img loading="lazy" decoding="async" data-attachment-id="1562" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/unnamed-1" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-1.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="unnamed (1)" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-1.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-1.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1562" title="unnamed (1)" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-1.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-1.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-1.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="PhotoWallLWP" href="https://play.google.com/store/apps/details?id=com.larvalabs.photowall&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5sYXJ2YWxhYnMucGhvdG93YWxsIl0." target="_blank" rel="nofollow">Photo wall Live wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Photo wall is such a live wallpaper which brings your photos on home screen. It also show your instagram feed on your home screen. Choose from a bunch of effects to make the photos feel more like a background wallpaper, or to make them really pop.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/photowall.jpg"><img loading="lazy" decoding="async" data-attachment-id="1543" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/photowall" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/photowall.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="photowall" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/photowall.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/photowall.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1543" title="photowall" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/photowall.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/photowall.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/photowall.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="SeasonZenHD" href="https://play.google.com/store/apps/details?id=com.dualboot.apps.springzenfree&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5kdWFsYm9vdC5hcHBzLnNwcmluZ3plbmZyZWUiXQ.." target="_blank" rel="nofollow">Season Zen HD Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Enjoy every season in a peaceful park surrounded by the blossoming of new life. Season Zen came with 3D wallpaper. Sunlight filters through swaying trees in a peaceful park, as cherry blossoms float past. A birds nest perched in a branch overlooks a park bench, gently flowing brook, and blooming flowers. Decent presentation!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/season.jpg"><img loading="lazy" decoding="async" data-attachment-id="1539" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/season" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/season.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="season" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/season.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/season.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1539" title="season" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/season.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/season.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/season.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="PandaChunLWP" href="https://play.google.com/store/apps/details?id=com.tokyopop.wallpaper.panda.free&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS50b2t5b3BvcC53YWxscGFwZXIucGFuZGEuZnJlZSJd" target="_blank" rel="nofollow">Panda Chub Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">A curious panda on your home screen! He&#8217;ll follow your touch and look about when idle. With five different backgrounds to choose from, you&#8217;ll have no trouble fitting him in any environment.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-3.jpg"><img loading="lazy" decoding="async" data-attachment-id="1560" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/unnamed-3" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-3.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="unnamed (3)" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-3.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-3.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1560" title="unnamed (3)" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-3.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-3.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-3.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="ThunderStormLWP" href="https://play.google.com/store/apps/details?id=fishnoodle.storm_free&amp;feature=search_result#?t=W251bGwsMSwxLDEsImZpc2hub29kbGUuc3Rvcm1fZnJlZSJd" target="_blank" rel="nofollow">Thunderstorm Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Thunderstorm Live Wallpaper: A spectacular show of storm clouds and lightning. A spectacular live wallpaper of storm clouds and lightning, Thunderstorm uses Open GL to render a constantly moving scene of clouds. You can customize ambient light color, bolt color, wind speed, bolt frequency, number of clouds, and more!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thunderstorm.jpg"><img loading="lazy" decoding="async" data-attachment-id="1544" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/thunderstorm" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thunderstorm.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="thunderstorm" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thunderstorm.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thunderstorm.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1544" title="thunderstorm" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thunderstorm.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thunderstorm.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/thunderstorm.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="PandaLite" href="https://play.google.com/store/apps/details?id=com.apofiss.pandagllite&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5hcG9maXNzLnBhbmRhZ2xsaXRlIl0." target="_blank" rel="nofollow">Panda Lite Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Panda within magical atmoshpere featuring 3 dynamic themes &#8211; Snowy, Sakura and Firefly Night!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Choose from 3 magical themes where each one has an unique atmosphere and features! Touch sensitive Panda and particles ( snow, sakuras, fireflies ) maks it all more alive and responding; also fully customizable</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-4.jpg"><img loading="lazy" decoding="async" data-attachment-id="1566" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/unnamed-4" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-4.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="unnamed (4)" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-4.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-4.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1566" title="unnamed (4)" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-4.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-4.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-4.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="Galactic Core" href="https://play.google.com/store/apps/details?id=fishnoodle.spacescapewallpaper_free&amp;feature=search_result#?t=W251bGwsMSwxLDEsImZpc2hub29kbGUuc3BhY2VzY2FwZXdhbGxwYXBlcl9mcmVlIl0." target="_blank" rel="nofollow">Galactic core Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Fantastic Live wall paper. Galactic Core: A beautiful live wallpaper featuring a rotating spiral galaxy! A stunning live wallpaper featuring a spinning spiral galaxy, Galactic Core is a beautiful and serene backdrop for your home screen, with many layers of depth apparent when switching home screens. Recently updated. Support both portait and landscape mode.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Galactic.jpg"><img loading="lazy" decoding="async" data-attachment-id="1545" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/galactic" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Galactic.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Galactic" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Galactic.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Galactic.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1545" title="Galactic" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Galactic.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Galactic.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/Galactic.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="VortexGalaxy" href="https://play.google.com/store/apps/details?id=com.maxelus.vortexgalaxylivewallpaper&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5tYXhlbHVzLnZvcnRleGdhbGF4eWxpdmV3YWxscGFwZXIiXQ.." target="_blank" rel="nofollow">Vortex Galaxy</a>&nbsp;Live Wallpaper</span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Simply awesome&#8230;.! Developers did a very good job great effects. Great color mix. Gets a chance to see unknown part of galaxy. YOU CAN FLY in the galactic nebula ! <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> This is the third of the four Galaxies.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/VortexGalaxy.jpg"><img loading="lazy" decoding="async" data-attachment-id="1546" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/vortexgalaxy" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/VortexGalaxy.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="VortexGalaxy" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/VortexGalaxy.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/VortexGalaxy.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1546" title="VortexGalaxy" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/VortexGalaxy.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/VortexGalaxy.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/VortexGalaxy.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-size: large;"><strong><span style="font-family: georgia, palatino; color: #ff6600;"><a style="text-decoration: none; color: #ff6600;" title="3D Tulip LWP" href="https://play.google.com/store/apps/details?id=org.androidworks.livewallpapertulipfree&amp;feature=search_result#?t=W251bGwsMSwxLDEsIm9yZy5hbmRyb2lkd29ya3MubGl2ZXdhbGxwYXBlcnR1bGlwZnJlZSJd" target="_blank" rel="nofollow">3D Tulip Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Gives a decent and cool look to your home screen. Screen moves smoothly which makes it more beautiful. Tulip flower in the middle of tulip field. Live wallpaper reacts to touch gestures, rotating the scene in the direction of your swipes and homepage changes.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3dTulip.jpg"><img loading="lazy" decoding="async" data-attachment-id="1547" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/3dtulip" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3dTulip.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="3dTulip" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3dTulip.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3dTulip.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1547" title="3dTulip" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3dTulip.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3dTulip.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/3dTulip.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="BubblePro" href="https://play.google.com/store/apps/details?id=com.xllusion.livewallpaper.bubble&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS54bGx1c2lvbi5saXZld2FsbHBhcGVyLmJ1YmJsZSJd" target="_blank" rel="nofollow">Bubble Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Gives fancy look to your home screen. A fun bubble live wallpaper where you can tap bubbles to burst. Now you can customize bubble image from your gallery, choose your lucky color theme and poke your friends to improve affection. You can change theme, colors and number of bubbles.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bubble.jpg"><img loading="lazy" decoding="async" data-attachment-id="1538" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/bubble" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bubble.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="bubble" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bubble.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bubble.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1538" title="bubble" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bubble.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bubble.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/bubble.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="GalaxyPack" href="https://play.google.com/store/apps/details?id=com.maxelus.galaxypacklivewallpaper&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5tYXhlbHVzLmdhbGF4eXBhY2tsaXZld2FsbHBhcGVyIl0." target="_blank" rel="nofollow">Galaxy Pack Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Discover Galaxies and Nebulas in 3D, realtime and OpenGL. fter the discovery of a series of four galaxies: Inferno Galaxy, Ice Galaxy, Shadow Galaxy and Galaxy Vortex. You have number of options to choose from. You can select from diffrent 11 galaxies. Great isn&#8217;t it??</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/galaxy-pack.jpg"><img loading="lazy" decoding="async" data-attachment-id="1537" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/galaxy-pack" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/galaxy-pack.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="galaxy pack" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/galaxy-pack.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/galaxy-pack.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1537" title="galaxy pack" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/galaxy-pack.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/galaxy-pack.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/galaxy-pack.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="AstroidBelt" href="https://play.google.com/store/apps/details?id=fishnoodle.asteroid_free&amp;feature=search_result#?t=W251bGwsMSwxLDEsImZpc2hub29kbGUuYXN0ZXJvaWRfZnJlZSJd" target="_blank" rel="nofollow">Asteroid Belt Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Asteroid Belt Live Wallpaper &#8211; A planetary system on your Android home screen!. A beautiful 3D live wallpaper featuring a planetary system and tumbling asteroids!. Asteroid Belt fills your home screen with a moving solar system, as asteroids tumble past in the foreground! Preferences let you control the display of the solar system, the asteroids, their speed, the speed of the camera, and more!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AstroidBelt.jpg"><img loading="lazy" decoding="async" data-attachment-id="1475" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/astroidbelt" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AstroidBelt.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="AstroidBelt" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AstroidBelt.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AstroidBelt.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1475" title="AstroidBelt" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AstroidBelt.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AstroidBelt.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AstroidBelt.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="ExodusLWP" href="https://play.google.com/store/apps/details?id=com.joko.exodus&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5qb2tvLmV4b2R1cyJd" target="_blank" rel="nofollow">Exodus Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">A mass of blocks flips and fades across your home screen! Swipe the screen and watch as the mass changes direction and more blocks fade in!. You can change color of the boxes. You can size of the boxes. With help of theme manager you can apply some predefined themes. Great !!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/exodus.png"><img loading="lazy" decoding="async" data-attachment-id="1473" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/exodus" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/exodus.png?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="exodus" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/exodus.png?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/exodus.png?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1473" title="exodus" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/exodus.png?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/exodus.png?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/exodus.png?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: large;"><strong><span style="font-family: georgia, palatino;"><a style="text-decoration: none; color: #ff6600;" title="PhotileLWP" href="https://play.google.com/store/apps/details?id=com.joko.photile&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5qb2tvLnBob3RpbGUiXQ.." target="_blank" rel="nofollow">Photile Live Wallpaper</a></span></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Best of its kind. Imagine a live wallpaper allows you to take a picture and covert it into live tiles!!. Amazing!!!. People will love to watch your home screen. Photile turns any picture you choose into a grid of floating, fading, sliding tiles! Touch the tiles and watch as a shock wave ripples across your screen!. Most important it allows you to changer shape and size of tile.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-7.jpg"><img loading="lazy" decoding="async" data-attachment-id="1567" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/unnamed-7" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-7.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="unnamed (7)" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-7.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-7.jpg?fit=696%2C340&amp;ssl=1" class="aligncenter size-full wp-image-1567" title="unnamed (7)" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-7.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-7.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-7.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-size: large;"><strong><span style="font-family: georgia, palatino; color: #ff6600;"><a style="text-decoration: none; color: #ff6600;" title="OceansHDLWP" href="https://play.google.com/store/apps/details?id=com.dualboot.apps.ocean&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5kdWFsYm9vdC5hcHBzLm9jZWFuIl0." target="_blank" rel="nofollow">Oceans HD Live Wallpaper</a></span></strong></span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">Explore exotic sealife at the depths of the ocean &#8211; in true 3D.</span><span style="font-family: georgia, palatino; font-size: medium;">Dive down and immerse yourself in your own underwater world every time you use your device.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-8.jpg"><img loading="lazy" decoding="async" data-attachment-id="1568" data-permalink="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/unnamed-8" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-8.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="unnamed (8)" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-8.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-8.jpg?fit=696%2C340&amp;ssl=1" class="size-full wp-image-1568" title="unnamed (8)" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-8.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-8.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/12/unnamed-8.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Please note that we do not own copyright to any LWP. Please let us know and we will remove it within 24 hrs.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a  class="vc_btn vc_btn-white vc_btn-sm vc_btn_square " target="blank" href="http://www.mediafire.com/?8bgymbeina52mp7" ><strong>Download 44mb</strong></a></span></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html">23 Amazing HD Live Wallpapers For Android</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/23-amazing-hd-live-wallpapers-for.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1459</post-id>	</item>
		<item>
		<title>Fancy Contact us Page Using ASP.NET</title>
		<link>https://www.amazingthings.in/fancy-contact-us-page-using-asp-dot-net.html</link>
					<comments>https://www.amazingthings.in/fancy-contact-us-page-using-asp-dot-net.html#comments</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Sun, 25 Nov 2012 14:48:37 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[contact us page using asp.net]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=992</guid>

					<description><![CDATA[<p>Title : Contact us page using ASP.NET Description : I am going to design contact us page where you will fill up necessary fields and click button to submit it. I will make use of few textboxes to enter some necessary fields and then at the end there will be a button called submit which [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/fancy-contact-us-page-using-asp-dot-net.html">Fancy Contact us Page Using ASP.NET</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong style="font-family: georgia, palatino; font-size: medium; text-align: justify;"><span style="color: #ff6600;">Title</span> : Contact us page using ASP.NET</strong></p>
<p><strong style="color: #ff6600; font-family: georgia, palatino; font-size: medium;">Description <span style="color: #000000;">:</span></strong></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">I am going to design contact us page where you will fill up necessary fields and click button to submit it.</span></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">I will make use of few textboxes to enter some necessary fields and then at the end there will be a button called submit which will send data in form of an email notification.</span></p>
<p><strong style="font-family: georgia, palatino; font-size: medium;"><span style="color: #ff6600;">Demo</span> :</strong></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CropperCapture14.gif"><img loading="lazy" decoding="async" data-attachment-id="1426" data-permalink="https://www.amazingthings.in/fancy-contact-us-page-using-asp-dot-net.html/croppercapture1-4" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CropperCapture14.gif?fit=521%2C339&amp;ssl=1" data-orig-size="521,339" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CropperCapture[1]" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CropperCapture14.gif?fit=300%2C195&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CropperCapture14.gif?fit=521%2C339&amp;ssl=1" class="alignnone size-full wp-image-1426" title="Asp contact us form" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CropperCapture14.gif?resize=521%2C339" alt="Asp contact us form" width="521" height="339" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CropperCapture14.gif?w=521&amp;ssl=1 521w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CropperCapture14.gif?resize=300%2C195&amp;ssl=1 300w" sizes="(max-width: 521px) 100vw, 521px" data-recalc-dims="1" /></a></p>
<p><strong><span style="font-family: georgia, palatino; font-size: medium;"><span style="color: #ff6600;">Email Notification</span> : </span></strong></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Capture.png"><img loading="lazy" decoding="async" data-attachment-id="989" data-permalink="https://www.amazingthings.in/capture" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Capture.png?fit=381%2C204&amp;ssl=1" data-orig-size="381,204" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Email Notifiaction ASP.NET" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Capture.png?fit=300%2C160&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Capture.png?fit=381%2C204&amp;ssl=1" class="size-full wp-image-989" title="Email Notifiaction ASP.NET" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Capture.png?resize=381%2C204" alt="Email Notifiaction ASP.NET" width="381" height="204" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Capture.png?w=381&amp;ssl=1 381w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Capture.png?resize=300%2C160&amp;ssl=1 300w" sizes="(max-width: 381px) 100vw, 381px" data-recalc-dims="1" /></a></p>
<p style="text-align: justify;"><span style="color: #ff0000; font-family: georgia, palatino; font-size: medium;"><strong>.aspx Code :</strong></span></p>
<p><code lang="asp[lines]"><br />
</code></p>
<p><code></code><code></code></p>
<p><code></code><code></code></p>
<p><code></code><code></code></p>
<form id="form1">
<table class="auto-style1">
<tbody>
<tr>
<td class="auto-style2"></td>
<td>Contact Us</td>
</tr>
<tr>
<td class="auto-style2"></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</form>
<p><code lang="asp[lines]"><br />
</code></p>
<p><code lang="asp[lines]"><br />
</code></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-size: medium; font-family: georgia, palatino;"><strong>Code Behind Button <span style="color: #000000;">:</span></strong></span></p>
<p><code lang="asp[lines]">using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Net;<br />
using System.Net.Mail;<br />
using System.Web;<br />
using System.Web.UI;<br />
using System.Web.UI.WebControls;</code></p>
<p><code></code><code></code></p>
<p>namespace AmazingThingsDemoOG<br />
{<br />
public partial class _Default : System.Web.UI.Page<br />
{<br />
protected void Page_Load(object sender, EventArgs e)<br />
{</p>
<p><code></code><code></code></p>
<p>}</p>
<p><code></code><code></code></p>
<p>//This function will be called on button click to send email<br />
protected void SendEMail()<br />
{<br />
try<br />
{<br />
//url of your website<br />
String url = &#8220;YourURL&#8221;;</p>
<p><code></code><code></code></p>
<p>//Email id and Password of that Email id which you will be using to send email<br />
NetworkCredential loginInfo = new NetworkCredential(&#8220;EmailId&#8221;, &#8220;Password&#8221;);</p>
<p><code></code><code></code></p>
<p>//Declare new MailMessage object and initialize with values such as from address, to address, bcc address, subject etc<br />
MailMessage msg = new MailMessage();<br />
msg.From = new MailAddress(&#8220;FromAddress&#8221;);<br />
msg.To.Add(new MailAddress(emailTextBox.Text));<br />
msg.Bcc.Add(new MailAddress(&#8220;BccAddress&#8221;));<br />
msg.Subject = &#8220;Notification from:Your Website Name&#8221;;<br />
msg.Body = &#8220;Hi,&#8221; + nameTextBox.Text + &#8221;<br />
Thanks for contacting us. We will contact you soon.<br />
&#8221; + &#8220;Our System has recorded a message<br />
&#8221; + messageTextBox.Text + &#8221;<br />
Thanks and Regards<br />
&#8221; + url;<br />
msg.IsBodyHtml = true;</p>
<p><code></code><code></code></p>
<p>//Name the client which you will be using to send email.<br />
SmtpClient client = new SmtpClient(&#8220;smtp.gmail.com&#8221;);</p>
<p><code></code><code></code></p>
<p>client.EnableSsl = true;<br />
client.UseDefaultCredentials = false;<br />
client.Credentials = loginInfo;<br />
client.Send(msg);<br />
}<br />
catch (Exception ex)<br />
{<br />
confirmationLabel.Text = ex.Message;<br />
}</p>
<p><code></code><code></code></p>
<p>}</p>
<p><code></code><code></code></p>
<p>protected void submit_Click(object sender, EventArgs e)<br />
{<br />
try<br />
{<br />
//It Will call function SendEmail and confirms that message sent succesfully.<br />
SendEMail();<br />
confirmationLabel.Text = &#8220;Thanks for contacting us. We will get back to you in 24Hrs.&#8221;;<br />
confirmationLabel.Visible = true;<br />
subjectTextBox.Text = &#8220;&#8221;;<br />
emailTextBox.Text = &#8220;&#8221;;<br />
nameTextBox.Text = &#8220;&#8221;;<br />
messageTextBox.Text = &#8220;&#8221;;<br />
}<br />
catch (Exception) { }<br />
}<br />
}</p>
<p><code lang="asp[lines]"><br />
</code></p>
<p><code>}</code></p>
<p><span style="font-family: georgia, palatino;"> <span style="font-size: medium; font-family: georgia, palatino;"><strong>I have used CSS to make contact us page attractive.</strong></span></span></p>
<p><span style="font-family: georgia, palatino;"><strong><span style="color: #ff6600; font-size: medium;">CSS Code :</span></strong></span></p>
<p><span style="font-family: georgia, palatino;"><code lang="css[lines]">.TextBox<br />
{<br />
padding: 9px;<br />
border: solid 1px #E5E5E5;<br />
outline: 0;<br />
font: normal 13px/100% Verdana, Tahoma, sans-serif;<br />
width: 200px;<br />
background: #FFFFFF url('bg_form.png') left top repeat-x;<br />
background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));<br />
background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);<br />
box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;<br />
-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;<br />
-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;<br />
}       </code></span></p>
<p><code></code><code></code></p>
<p>.TextBox:hover, textarea:hover,<br />
.TextBox:focus, textarea:focus<br />
{<br />
border-color: #C9C9C9;<br />
-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;<br />
}</p>
<p><code lang="css[lines]"><br />
</code></p>
<p><code lang="css[lines]">        .Button<br />
{<br />
width: auto;<br />
padding: 9px 15px;<br />
background: #617798;<br />
border: 0;<br />
font-size: 14px;<br />
color: #FFFFFF;<br />
-moz-border-radius: 5px;<br />
-webkit-border-radius: 5px;<br />
cursor: pointer;<br />
}</code></p>
<p>[box type=&#8221;success&#8221; align=&#8221;aligncenter&#8221; width=&#8221;620&#8243; ]This project was successfully compiled using  <strong>Microsoft Visual Studio 2012</strong> [/box]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/fancy-contact-us-page-using-asp-dot-net.html">Fancy Contact us Page Using ASP.NET</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/fancy-contact-us-page-using-asp-dot-net.html/feed</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">992</post-id>	</item>
		<item>
		<title>Latest top 10 android action games</title>
		<link>https://www.amazingthings.in/latest-top-10-android-action-games.html</link>
					<comments>https://www.amazingthings.in/latest-top-10-android-action-games.html#comments</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Wed, 21 Nov 2012 10:00:01 +0000</pubDate>
				<category><![CDATA[Iphone and Android]]></category>
		<category><![CDATA[latest android games]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=1304</guid>

					<description><![CDATA[<p>Recently i bought a new android cell phone and while searching for best games and apps from Android i came to know that you have &#8220;N&#8221; number of options. I found few android action games which are very interesting and you will fall in love with them once you start playing. 1. Contract Killer 2 [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/latest-top-10-android-action-games.html">Latest top 10 android action games</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-family: georgia, palatino; text-align: justify; font-size: medium;">Recently i bought a new android cell phone and while searching for best games and apps from Android i came to know that you have &#8220;N&#8221; number of options.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">I found few <strong>android action games</strong> which are very interesting and you will fall in love with them once you start playing.</span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-family: georgia, palatino; font-size: medium;"><strong style="color: #ff6600;"><a style="text-decoration: none;" title="Contract Killer 2" href="https://play.google.com/store/apps/details?id=com.glu.contractkiller2&amp;feature=nav_result#?t=W251bGwsMSwxLDMsImNvbS5nbHUuY29udHJhY3RraWxsZXIyIl0." target="_blank" rel="nofollow"><span style="color: #ff6600;">1. Contract Killer 2</span></a></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Nice one from Glu Mobile sequel to first game. You play as Jack&nbsp;Griffin, the Contract Killer. To survive&nbsp;&nbsp;you have to sneak your way in, shoot your way out!. The best part of it is free to play, you can choose how to play it. &nbsp;You will experience best&nbsp;story line, long range shots and many more.. Many of you will find it enjoyable.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/ContractKiller21.jpg"><img loading="lazy" decoding="async" data-attachment-id="1321" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/contractkiller2-2" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/ContractKiller21.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="ContractKiller2" data-image-description="&lt;p&gt;ContractKiller2&lt;/p&gt;
" data-image-caption="&lt;p&gt;ContractKiller2&lt;/p&gt;
" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/ContractKiller21.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/ContractKiller21.jpg?fit=696%2C340&amp;ssl=1" class="size-full wp-image-1321" title="ContractKiller2" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/ContractKiller21.jpg?resize=696%2C340" alt="ContractKiller2" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/ContractKiller21.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/ContractKiller21.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium; color: #ff6600;"><strong><a style="text-decoration: none;" title="ShadowGun" href="https://play.google.com/store/apps/details?id=com.madfingergames.deadzone" target="_blank" rel="nofollow"><span style="color: #ff6600; text-decoration: initial;">2. ShadowGun</span></a></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">One of the most popular shooters on Android went&nbsp;multiplayer&nbsp;this past month and released a public beta of the game.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">There are two game modes,&nbsp;Death match&nbsp;and Zone Control, it’s basically multiplayer&nbsp;Shadowgun&nbsp;which is AWESOME. Takes mobile gaming to new era its an approach to turn mobile gaming into Console and PC cousins.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Shadowgun.jpg"><img loading="lazy" decoding="async" data-attachment-id="1325" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/shadowgun" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Shadowgun.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Shadowgun" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Shadowgun.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Shadowgun.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-1325" title="Shadowgun" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Shadowgun.jpg?resize=696%2C340" alt="" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Shadowgun.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Shadowgun.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium; color: #ff6600;"><strong><span style="text-decoration: initial;"><a style="text-decoration: none;" title="Real Steel" href="https://play.google.com/store/apps/details?id=com.jumpgames.RealSteelFreeEdtion&amp;feature=search_result" target="_blank" rel="nofollow"><span style="text-decoration: initial; color: #ff6600;">3. Real Steel</span></a></span></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">An approach to bring movie to game. I must say nice attempt, nice graphics. It&nbsp;is an underworld fighting game set in the near-future, where 2,000 pound robots fight in a no-holds barred battle to the death.&nbsp;Featuring two play modes, you can either fight a roster of Robots (Tournament Mode), each more challenging than the last, or fight in a quick sparring match against your favorite opponents (Free Sparring Mode).&nbsp;Your primary objective: defeat Midas and unlock all 8 unique Robots.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/RealSteel.jpg"><img loading="lazy" decoding="async" data-attachment-id="1326" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/realsteel" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/RealSteel.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="RealSteel" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/RealSteel.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/RealSteel.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-1326" title="RealSteel" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/RealSteel.jpg?resize=696%2C340" alt="Real Steel" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/RealSteel.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/RealSteel.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="color: #ff6600; font-family: georgia, palatino; font-size: medium;"><strong><a style="text-decoration: none;" title="TrafficPanic" href="https://play.google.com/store/apps/details?id=com.neonplay.trafficpanic2&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5uZW9ucGxheS50cmFmZmljcGFuaWMyIl0." target="_blank" rel="nofollow"><span style="text-decoration: initial; color: #ff6600;">4. Traffic Panic</span></a></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Nice Game.. . Lots of explosion. Try to avoid explosion to score more points.&nbsp;It’s rush hour, but don’t panic! Keep the traffic flowing to avoid crashes, pile-ups and blowing up the entire street!.&nbsp;This game will make you gawp at the most awesome explosions, crashes and damage you&#8217;ve ever seen!</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Traffic-Panic.jpg"><img loading="lazy" decoding="async" data-attachment-id="1329" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/traffic-panic" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Traffic-Panic.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Traffic Panic" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Traffic-Panic.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Traffic-Panic.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-1329" title="Traffic Panic" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Traffic-Panic.jpg?resize=696%2C340" alt="Traffic Panc" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Traffic-Panic.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Traffic-Panic.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium; color: #ff6600;"><strong><a style="text-decoration: initial;" title="Moon Chaser" href="https://play.google.com/store/apps/details?id=com.reverie.game.ninja&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5yZXZlcmllLmdhbWUubmluamEiXQ.." target="_blank" rel="nofollow"><span style="text-decoration: initial; color: #ff6600;">5. Moon Chaser</span></a></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">The best action/racing game!. Make your ninja fly before eclipse of the moon. Jump and collect points.&nbsp;All of the magic is GRAVITY.The gravity increases when screen is touched, and it restores to normal when released.&nbsp;The game rule is very simple, but how far ninja runs will completely depend on your skill.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Moon-Chaser.jpg"><img loading="lazy" decoding="async" data-attachment-id="1331" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/moon-chaser" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Moon-Chaser.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Moon Chaser" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Moon-Chaser.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Moon-Chaser.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-1331" title="Moon Chaser" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Moon-Chaser.jpg?resize=696%2C340" alt="Moon Chaser" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Moon-Chaser.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/Moon-Chaser.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium; color: #ff6600;"><strong><a style="text-decoration: initial;" title="Frontline Commando" href="https://play.google.com/store/apps/details?id=com.glu.modwarsniper&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5nbHUubW9kd2Fyc25pcGVyIl0." target="_blank" rel="nofollow"><span style="text-decoration: initial; color: #ff6600;">6. Frontline Commando</span></a></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Its one man army!. You are the front-line commando. Nice locations.&nbsp;As the sole surviving Commando of a renegade attack against a ruthless dictator, you are stranded on the frontline and hell-bent on payback. You must use all of your specialized skills to survive the onslaught of the enemy forces and avenge your fallen soldiers. ULTIMATE 3D GAME</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/FrontlineCommando.jpg"><img loading="lazy" decoding="async" data-attachment-id="1334" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/frontlinecommando" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/FrontlineCommando.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="FrontlineCommando" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/FrontlineCommando.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/FrontlineCommando.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-1334" title="FrontlineCommando" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/FrontlineCommando.jpg?resize=696%2C340" alt="FrontlineCommando" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/FrontlineCommando.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/FrontlineCommando.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium; color: #ff6600;"><strong><a style="text-decoration: initial;" title="Death Moto" href="https://play.google.com/store/apps/details?id=com.icloudzone.DeathMoto&amp;feature=apps_topselling_free#?t=W251bGwsMSwxLG51bGwsImNvbS5pY2xvdWR6b25lLkRlYXRoTW90byJd" target="_blank" rel="nofollow"><span style="text-decoration: initial; color: #ff6600;">7. Death Moto</span></a></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Reminds me of Road Rash. Fantastic, MindBlowing, Addictive. Reminds me of Road Rash. Experience Unlimited Pleasure. Amazing graphics and bike models.&nbsp;Race and Kill&#8230;.. Ultimate road rage. Download and have fun.</span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathMoto.jpg"><img loading="lazy" decoding="async" data-attachment-id="1335" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/deathmoto" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathMoto.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="DeathMoto" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathMoto.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathMoto.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-1335" title="DeathMoto" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathMoto.jpg?resize=696%2C340" alt="DeathMoto" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathMoto.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathMoto.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;"><span style="color: #ff6600;"><strong><a style="text-decoration: initial;" title="Critical Strike Portable" href="https://play.google.com/store/apps/details?id=com.StudioOnMars.CSPortable&amp;feature=apps_topselling_free#?t=W251bGwsMSwxLG51bGwsImNvbS5TdHVkaW9Pbk1hcnMuQ1NQb3J0YWJsZSJd" target="_blank" rel="nofollow"><span style="text-decoration: initial; color: #ff6600;">8. Critical Strike Portable</span></a></strong></span></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">You guys miss Counter Strike when you do not have system with you. Wanna have it on your android cellphone here comes Critical Strike Portable which allow you to play with multiple locations similar to counter strike. It is&nbsp;Cross-platform 3D FPS MMO for Android, iOS and Web!.&nbsp;The gameplay and graphics are absolutely incredible &#8211; it just doesn&#8217;t feel like a mobile game.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CS-Portable.jpg"><img loading="lazy" decoding="async" data-attachment-id="1339" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/cs-portable" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CS-Portable.jpg?fit=705%2C345&amp;ssl=1" data-orig-size="705,345" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CS Portable" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CS-Portable.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CS-Portable.jpg?fit=696%2C341&amp;ssl=1" class="alignnone size-full wp-image-1339" title="CS Portable" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CS-Portable.jpg?resize=696%2C341" alt="CS Portable" width="696" height="341" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CS-Portable.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/CS-Portable.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium; color: #ff6600;"><strong><a style="text-decoration: initial; color: #ff6600;" title="Death Dome" href="https://play.google.com/store/apps/details?id=com.glu.ddome&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5nbHUuZGRvbWUiXQ.." target="_blank" rel="nofollow">9.Death Dome</a></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Death Dome &#8212; Amazing Amazing Fighting Game for Android Devices.&nbsp;Game by Glu Mobile again. Battle behemoths in a virus ravaged city!. Nice game the action sequences looks good. You guys will certainly love to play this.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathDome.jpg"><img loading="lazy" decoding="async" data-attachment-id="1359" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/deathdome" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathDome.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="DeathDome" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathDome.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathDome.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-1359" title="DeathDome" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathDome.jpg?resize=696%2C340" alt="DeathDome" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathDome.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/DeathDome.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium; color: #ff6600;"><strong><a style="text-decoration: none;" title="Angry Birds Star Wars" href="https://play.google.com/store/apps/details?id=com.rovio.angrybirdsstarwars.ads.iap&amp;feature=apps_topselling_new_free#?t=W251bGwsMSwxLG51bGwsImNvbS5yb3Zpby5hbmdyeWJpcmRzc3RhcndhcnMuYWRzLmlhcCJd" target="_blank" rel="nofollow"><span style="text-decoration: initial; color: #ff6600;">10. Angry Birds Star Wars</span></a></strong></span></p>
<p style="text-align: justify;"><span style="font-family: georgia, palatino; font-size: medium;">Here comes angry birds with new adventure.&nbsp;A long time ago in a galaxy far, far away&#8230; a group of desperate rebel birds faced off against a galactic menace: the Empire’s evil&nbsp;Pig troopers&nbsp;. New set of birds loved playing go for it!!.</span></p>
<p style="text-align: justify;"><span style="font-size: medium; font-family: georgia, palatino;"><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AngryBirdsStarWars.jpg"><img loading="lazy" decoding="async" data-attachment-id="1361" data-permalink="https://www.amazingthings.in/latest-top-10-android-action-games.html/angrybirdsstarwars" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AngryBirdsStarWars.jpg?fit=705%2C344&amp;ssl=1" data-orig-size="705,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="AngryBirdsStarWars" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AngryBirdsStarWars.jpg?fit=300%2C146&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AngryBirdsStarWars.jpg?fit=696%2C340&amp;ssl=1" class="alignnone size-full wp-image-1361" title="AngryBirdsStarWars" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AngryBirdsStarWars.jpg?resize=696%2C340" alt="AngryBirdsStarWars" width="696" height="340" srcset="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AngryBirdsStarWars.jpg?w=705&amp;ssl=1 705w, https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2012/11/AngryBirdsStarWars.jpg?resize=300%2C146&amp;ssl=1 300w" sizes="(max-width: 696px) 100vw, 696px" data-recalc-dims="1" /></a></span></p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/latest-top-10-android-action-games.html">Latest top 10 android action games</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/latest-top-10-android-action-games.html/feed</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1304</post-id>	</item>
	</channel>
</rss>
