User Tools

Site Tools


merchant_guide:button_links
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


merchant_guide:button_links [2009/07/30 14:14] (current) – created matt
Line 1: Line 1:
 +====== Sample Buttons ======
  
 +
 +
 +The following code can be placed into any HTML web page.  Be sure to replace the URL (text in between the quotes) with your own Package Link.  To learn more about Package Links, including how to's, please review the [[links|Package Link Overview]].
 +
 +
 +
 +=== CSS Button ===
 +
 +
 +
 +<code>
 +
 +<input type='button' name='button' id='button' value='Buy Now' onclick='location="https://www.subscriptionbridge.com/checkout/MyPackageID";' />
 +
 +</code>
 +
 +
 +
 +=== Image Button ===
 +
 +
 +
 +<code>
 +
 +<input type="image" src="button.gif" name="image" onclick='location="https://www.subscriptionbridge.com/checkout/MyPackageID";'>
 +
 +</code>