Skip to main content

Web Designing Tips

You should have original content. Content is the key factor of any excellent Web site. The ability to take a common subject and give it some interest and originality is a rare talent,but necessary to keep visitors coming back. You should update the content twice in a month.

After that you should have great graphics in your website. If your graphics are correctly used they can greatly improve a web site and it's content. If you overuse or they will take a lot of time to load, you will drive visitors away before they even see the content. You don't need expensive programs or graphics you just need simple and decent graphics.

Third, you need a good presentation. Good Web sites do not keep the user guessing. They make their purpose immediately evident and present an easy to follow navigation system. The content and graphics blend in perfectly with the presentation and following it is a simple matter.

You will never find hyperbole or confusion caused by overuse of animated graphics,Java or anything else that will serve to mask the intent and content of the site. Most importantly, a great Web site is run by a competent and knowledgeable Webmaster. One who knows how to seamlessly move the visitors to each level of the site.

Actually web site is for user's information so it should be builds with rich content. It just does what it is supposed to do and leaves the hoopla behind. Last, but not least your site needs to be both interactive and proactive. Great web sites are ones that are people conscience.

The Internet is the advance of technology, remember it's just regular people, like you and I that are using it and will make it what it is in the future. Good web sites are the ones with the developers who not only have all the technical skills, but the people skills to boot. Keenly observe about the sites you visit again and again.

If your content is rich and unique then your web site traffic will increase. If the users satisfied with the content they will visit your site again and again for information and they also recommend your web site.

Your web users want to know how they could resolve their problems and if you could help them do it. Don't hide this stuff where no one can find it. Highlight the benefits your product or service offers. Make it easy to find your informative articles. Present case studies. Permit them to download simple guides, forms or assessments. Give links to more resources. Make yourself useful and they will reward you with their business.

Comments

Popular posts from this blog

Song Aankhen Khuli Ho lyrics notation

Song : Aankhen Khuli Ho Movie: Mohabbatein Notes used : W=>Western - C D E F G- A- B-/ H=>Hindustani - S R G M P- D- N- ( Here for western, G=G-, A=A-, & B=B- ) ( For hindustani, P=P-, D=D-, & N=N- ) Song I : Aankhen Khuli...Ho Ya.. Ho Bandh W=> A.... C... B..C.. E.. E...... A... A.... H=> D... S... N..S.. G G....... D... D.... Deedaar Un Ka Ho.o.taa Hai.. W=> A...B....A....D.BAG....ADB... H=> D...N...D.....R.NDP...DRN... Kaise Kahoon Main O..Yaaraa W=> B..D.. D....E.... D.....C..C..C... H=> N..R.. R....G... R.....S..S..S..... Ye Pyaar Kaise Hota Hai W=> E...B.....DB...AG...B..AA H=> G...N....RN...DP...N...DD (Tururu ru ru, ru ru rururu ru......) W=> AA...GA...BCE..., B...DB..GA H=> DD...PD...NSG..., N..RN.. PD Song II: Aa.aj He Kisi..par Yaa.ro.on..., Marke De..Khe..gein Hum W=> E....FEDCBABC.D.. D D......., G A B C.... E.......D...D..... H=> G....MGRSNDNS.R. R R......., P D N S.....G........R...R.... Pyaar Ho...

All songs notation and chords at one place

Song : O Saathi Re Film : Mukhathar Ka Sikkandhar Uses : C D D# E G A Note : The numbers at the end of the lines indicate line numbers. Pallavi: O saathi re, tere binaa bhi kya jina, tere binaa bhi kya jina A- C D D#....,D D C DD E...C..CA-...,D D C DD E...CC.......1 Play line 1 again phulon men khaliyon men sapnom ki galiyon men GGG...GAGE.. GGG G A G E.................................................2 tere bina kuchh kahin naa E A G E D C D D#.......................................................................3 tere binaa bhi kya jina, tere binaa bhi kya jina D D C DD E....C..CA-..., D D C DDE....CC.............................4 Charanam: har dhadkan men, pyaas hai teri, sanson men teri khushboo hai CCC C D C A-, CCC C D C A-, DDD DED CD EE.. CCCC......................5 is dharthi se, us ambar tak, meri nazar men tu hi tu hai CCC C D C A-, CCC C D C A-, DDD DED CD EE.. CCCC......................6 pyaar yeh tute naa GGG... GAG D#......E............................

PHP Tips-Getting the nodes list of xml doument with responseXml in ajax ,call image save in database,time difference etc

Getting the nodes list of xml doument with responseXml in ajax var obj = ""; function callAjaxObj() { try { obj = new XMLHttpRequest(); } catch(e) { try { obj = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try { obj = ActiveXObject("Microsoft.XMLHTTP"); } catch(e) { alert("your browser doesn't support ajax"); return false; } } } } function testResponseXml() { callAjaxObj(); obj.open("get","sample.xml",true); obj.onreadystatechange=function() { if(obj.readyState==4) { var doc = obj.responseXML.documentElement; //var doc = obj.responseXML; alert(doc.getElementsByTagName('user').length); } } obj.send(null); } Example of calender script in PHP calender script in PHP echo " $title $year "; echo "SMTWTFS"; $day_count = 1; echo ""; while ( ...