Following Example says how to make internal styles for HTML Hyperlink.
Ex:
<head>
<style type = "text/css">
body{
background : orange;
color : black
}
a:link{
color : red
}
a:visited{
color : green
}
a:active{
color : blue
}
a:hover{
color : yellow
}
<style>
</head>
<body>
Welcome to my blog of Programming.
<a href = "http://programmingforbeginers.blogspot.com/">The Best Programming for Beginners </a>
</body>
No comments:
Post a Comment