
var tips=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired. Can start a new line with <br /> and links with href="https://url.com/" target="_blank">Google Analytics</a> used inline with the text. Images work too relative to the web page: <img src="../images/bullet-green.gif" alt="text" width="10" height="10" />

// Put all text in the single quotes: quotes[0]=''

tips[0]='Avoid making visitors strain to read your text. <br /><br />Small font sizes take longer to read and annoy visitors. It is hard enough to read from a computer monitor as it is.'

tips[1]='Never use light text on a dark background. Reverse type looks fancy but it is just too hard to read. <br /><br />There is a reason newspapers and magazines use black text on white. Follow their example.'

tips[2]='Don\'t use page backgrounds with large repeating pictures or text. <br /><br />As well as looking amateurish and adding to the page download time, they also distract from the main message of the web page.'

tips[3]='Think about how content should be organized <em>before</em> building your site. <br /><br />If it grows haphazardly, eventually it will become difficult to find files and frustrating for your visitors to find what they are looking for.'

tips[4]='Include a way for visitors to return to your home page from anywhere in your site. That way if they get lost they can quickly start over again. <br /><br />A popular method is to link from the site logo. But don\'t make the logo on the home page an active link.'

var whichtip=Math.floor(Math.random()*(tips.length))
document.write(tips[whichtip])
