Code:
<html>
<head>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.classypaypal.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/jquery.classypaypal.min.css" />
</head>
<body>
<button class="paypal ClassyPaypal-button"
data-business="info@masterpro.ws"
data-item_name="PayNow Plugin"
data-amount="10.99"
data-quantity="1"
data-currency_code="USD">Just $10.99!</button>
<script>
$(document).ready(function() {
$('.paypal').ClassyPaypal({
type: 'buynow',
style: 'round',
});
});
</script>
<p> </p>
<button class="paypal1 ClassyPaypal-button"
data-business="info@masterpro.ws"
data-item_name="Donation to support our work"
data-lc="US"
data-no_note="0"
data-currency_code="USD">Donate!</button>
<script>
$(document).ready(function() {
$('.paypal1').ClassyPaypal({
type: 'donate',
style: 'square',
});
});
</script>
</body>
</html>