How do you put html on another page?

  • Thread starter Thread starter evilbotsxxx
  • Start date Start date
E

evilbotsxxx

Guest
Okay let me make this clearer,
I have a w4w code, well i'm going to make one.
And when I make those contact buttons on my page to go to another link I want my w4w code to be on that link.
Wow that sentence was REALLY confusing let me try that again.
I want someone to click on my contact button to go to another page with just the code on another page.
Sorry if this is confusing i'm trying to make this clear as best as I can.
Helpp?
Please and thank you(:
 
let you have two pages, index1.html & index2.html. You are working in index.html and if you want to get in to index2.html then..
Have a button or image (let it be image.jpg) in a same location.. n use following code.
<a href="index2.html><img src="image.jpg"></a>
 
Back
Top