1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 | <style>
a.mytext {
font:normal 40px Impact,Arial,Sans-Serif;
background:#400030;
color:#ccc;
text-decoration:none;
text-shadow:1px 1px 0px #000,0 0 0px #000,0 0 0px #000,0 0 0px #000;
-webkit-transition:all .5s ease-out;
-moz-transition:all .5s ease-out;
-o-transition:all .5s ease-out;
transition:all .5s ease-out;
}
a.mytext:hover {
color:#fff;
text-shadow:
0px 5px 50px #FF0000,
0px 5px 50px #FF0000,
0px 5px 50px #FF0000,
0px 5px 50px #FF0000,
0px 5px 50px #FF0000;
}
</style>
<center><a class="mytext" href="https://the-best-widgets.blogspot.com">WIDGETS FOR BLOGS</a>
</center>
|