I am new to this and need help. I would like to move this code in a different spot on my webpage. How do I add the draggable or position code to it that will work. This is just a sample and I used google as my link for now. I just want to be able to drag it while designing my site but i can't figure how. Please help and like I said I'm just a newbie so please be gentle. Thanks Tony
<html>
<head>
<style type="text/css">
a:link,a:visited {
background-color:Gold;
color:Blue;
font-family:Verdana;
font-size:12pt;
font-weight:normal;
text-decoration:blink;
border: #ffee33;
border-style: inset;
border-width: 10px;
border-radius: 15px;
}
a:hover {
background-color:#ffee33;
color:Black;
font-family:Verdana;
font-size:12pt;
font-weight:normal;
text-decoration:none;
border: gold;
border-style: inset;
border-width: 10px;
border-radius: 15px;
}
}
</style>
</head>
<body>
<!-- Text link tag below-->
<a href="http://www.google.com">google.com</a>
</body>
</html>