I have this ad code to put on my website, but I need to put it at the bottom of the page (and centered). At the moment I have this code:
<center>
<script type="text/javascript">
var var1 = "728";
var var2 = "90";
var var3 = "728x90";
var var4 = "21676";
var var5 = "d119a02021ce7f2804da25fd308f24b0";
</script><script type="text/javascript"src="//cdn.adshexa.com/show_ads.php"></script>
</center>
How could I name the piece of code so I could edit it like
.nameofclass {
position: absolute;
left: 100px;
top: 150px;
}
But the left and top of the position be the bottom middle.
So I pretty much need to know how to name it a class then in the CSS change it to the bottom middle position.