I am currently working on creating a left sidebar in my HTML code, but I am still new to this. In the div for the sidebar, I have three buttons. However, Weebly keeps notifying me of an issue with the <a>
tag, and the second button's link appears in the right div as well. Any insights into what might be causing this would be greatly appreciated. Thank you.
<div id="left">
<a href="https://www.twitter.com/racinbases"><img src="icon" height="50" width="50"></a>
<a href="https://www.facebook.com/racinbases"><img src="icon" height="50"></a>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top" style="display: inline-block;">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="encrypted" value="(removed for sanity)">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
<div id='right'>
</div>
#left
{
width: 325px; height: 1000px; float: left; background-color: red;
}
#right
{
float:right; width: 515px; height: 1000px; background-color: blue;
}
'