SOLVED

Embedding a Form on a Marketo Landing Page

Go to solution
Anonymous
Not applicable

Embedding a Form on a Marketo Landing Page

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

Accepted Solutions
Anonymous
Not applicable

Re: Embedding a Form on a Marketo Landing Page

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

Re: Embedding a Form on a Marketo Landing Page

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.
 
Anonymous
Not applicable

Re: Embedding a Form on a Marketo Landing Page

Thank you, Alan!!