SOLVED

Embedding a Form on a Marketo Landing Page

Go to solution
Anonymous
Not applicable
I have a form (not  a Marketo form) that I'd like to embed on a Marketo Landing page. How do I go about it? What code do I need to ask for? 

Thank you!
Tags (1)
1 ACCEPTED SOLUTION
Anonymous
Not applicable
Itai,

You will need the HTML markup. It'll look something like this:

<form action='http://example.com/form.php' method='post'>
<input type='text' name='name' value='Name here' />
<input type='submit' value='Go' />
</form>

Once you've got that, open your landing page (click "Edit Draft") and simply copy and paste the form markup into the page where you want it to appear.
 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable
Thank you, Alan!! 
Anonymous
Not applicable
Itai,

You will need the HTML markup. It'll look something like this:

<form action='http://example.com/form.php' method='post'>
<input type='text' name='name' value='Name here' />
<input type='submit' value='Go' />
</form>

Once you've got that, open your landing page (click "Edit Draft") and simply copy and paste the form markup into the page where you want it to appear.