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 XHTML 1.0 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL] >
<head>
<title>Example</title>
<style type="text/css">
#one a:link, #one a:hover, #one a:visited {color:Red;}
#two a:link, #two a:hover, #two a:visited {color:Blue;}
</style>
</head>
<body>
<div id="container">
<div id="one">
<a href="#">Anchor One</a>
<div id="two">
<a href="#">Anchor Two</a>
</div>
</div>
</body>
</html>
<div id="linky5"><a href="somehwere.html">This link will be affected by the linky5 definitions</a></div>
#linky5 a:link {
color: #FFFFFF;
[red] font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: bold;
text-decoration: none;[/red]
}
#linky5 a:hover {
color: #FFFFFF;
[red] font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: bold;[/red]
text-decoration: underline;
}
#linky5 a:visited {
color: #FFFFFF;
[red] font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: bold;
text-decoration: none;[/red]
}
[green]#linky5 a:hover,
#linky5 a:visited,
#linky5 a:link
{
color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: bold;
text-decoration: none;
}[/green]
#linky5 a:hover
{
text-decoration: underline;
}