Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/strict.dtd">[/URL]
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta http-equiv="content-language" content="en">
<title>Link colour demo</title>
<style type="text/css">
/* Style all links a default colour */
a, a:link { color: #0000FF; }
a:visited { color: #FF00FF; }
a:hover { color: #FF0000; }
a:active, a:focus { color: #00FF00; }
/* Override some other link behaviour */
.redLinksContainer a, .redLinksContainer a:link { color: #FF0000; }
a.blueLink, a.blueLink:link { color: #0000FF; }
a.greenLink, a.greenLink:link { color: #00FF00; }
</style>
</head>
<body>
<div>
<a href="[URL unfurl="true"]http://www.google.co.uk/">Go[/URL] to Google</a><br />
<a href="[URL unfurl="true"]http://www.yahoo.co.uk/">Go[/URL] to Yahoo!</a>
<div>
<div class="redLinksContainer">
<a href="[URL unfurl="true"]http://www.google.co.uk/">Go[/URL] to Google</a><br />
<a href="[URL unfurl="true"]http://www.yahoo.co.uk/">Go[/URL] to Yahoo!</a>
</div>
<div>
<a class="blueLink" href="[URL unfurl="true"]http://www.google.co.uk/">Go[/URL] to Google</a><br />
<a class="greenLink" href="[URL unfurl="true"]http://www.yahoo.co.uk/">Go[/URL] to Yahoo!</a>
</div>
</body>
</html>