skip to main | skip to sidebar

Tuesday, June 25, 2013

Web Design Part(3)

0 comments
For web design need sometimes , when visitor click on the link then it will open on new tab.
Type this code on body.
<p><a href="URL/" target="_blank">Keyword</a></p>

Color changing is very important for web development. Anyone can easily change website background color  and clickable link color using this code.

<head>
<style type="text/css">
body {background-color:red}
p {color:yellow}
</style>
</head>


On page SEO is needed for increasing page rank. For increase page rank use meta tag technique. This tag keyword and content will hidden.

<meta name= "Websites Main keywords" content=technology, tech tips>


Website auto refreshing tag use for sports news updating websites. Developers can select this code refreshing timer , after how many times websites page will reload.

<meta http-equiv="refresh" content="10">