Embedding a Form on a Marketo Landing Page | Community
Skip to main content
March 17, 2014
Solved

Embedding a Form on a Marketo Landing Page

  • March 17, 2014
  • 2 replies
  • 1033 views
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!
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by
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.
 

2 replies

Accepted solution
March 17, 2014
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.
 
March 17, 2014
Thank you, Alan!!