CSS - Styling Links
CSS - Styling Links
html
!
!
<!doctype html>
<html>
<head>
<title>Learning CSS</title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style type="text/css">
p {
font-family:Arial, Helvetica, sans-serif;
}
a:visited {
a:hover {
}
</style>
color:green;
font-size:50px;
</head>
<body>
<a href="http://www.google.com" target=_blank>Google</a>
<a href="http://www.google.se" target=_blank>Google SE</a>
</body>
</html>