Need help adding a page.

1 replies
Kind of sounds dumb, but how do I add a new page to my static html website that redirects to amazon page? Since this is an affiliate link, I'd prefer the link to be sort of invisible to Google just to be safe.

Will adding a nofollow tag and directly linking work? I'd prefer to have an .html page or something so it looks good. May be I can add some redirect code and nofollow it?
#adding #page
  • Profile picture of the author tomcam
    You're working way too hard! All you need is a standard a link. Just do a File > New in your HTML editor. Save the document as newpage.html or whatever. Make sure it has the following:

    <html>
    <head>
    </head>
    <body>
    <h1>About My Way Awesome Affiliate Product</h1>
    <p>Boy, is this a cool affiliate product! Click <a href="http://www.warriorforum.com">here</a> to buy it right now on on Amazon and your life will be changed forever.</p>
    </body>
    </html>
    Where you would replace http://www.warriorforum.com with your link. That's all you need. Everything else you said was gobbeldygook.
    {{ DiscussionBoard.errors[1609580].message }}

Trending Topics