41 lines
793 B
HTML
41 lines
793 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>Button with anchor</title>
|
|
<style type="text/css">
|
|
body {
|
|
font: 120%/1.3 verdana, sans-serif;
|
|
color: pink;
|
|
background: grey;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
display: block;
|
|
width: 40px;
|
|
padding: 0.2em;
|
|
line-height: 1.4;
|
|
background-color: #ff89f2;
|
|
border: 1px solid blue;
|
|
color: #000;
|
|
text-decoration: none;
|
|
text-align: center;
|
|
}
|
|
|
|
a:hover {
|
|
background-color: #338869;
|
|
color: #fff;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p><a href="http://www.happycodings.com">CSS Button Example</a></p>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|