0% found this document useful (0 votes)
26 views

CSS - Styling Links

This document is about styling links in CSS. It includes HTML boilerplate code for a basic page with two links. The CSS section defines styles for links in their default, visited, and hover states, but the styles are empty, indicating this is an example of the structure for link styling without defined styles.

Uploaded by

Ania Neal
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views

CSS - Styling Links

This document is about styling links in CSS. It includes HTML boilerplate code for a basic page with two links. The CSS section defines styles for links in their default, visited, and hover states, but the styles are empty, indicating this is an example of the structure for link styling without defined styles.

Uploaded by

Ania Neal
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Styling Links: stylinglinks.

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>

You might also like