{"id":474442,"date":"2024-11-20T13:18:04","date_gmt":"2024-11-20T13:18:04","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=474442"},"modified":"2024-11-22T11:01:28","modified_gmt":"2024-11-22T11:01:28","slug":"create-a-cloud-page-and-embed-it-on-a-site","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/","title":{"rendered":"Create a Cloud Page and Embed It on a Site"},"content":{"rendered":"\n<p><a href=\"https:\/\/webkul.com\/salesforce-marketing-cloud-services\/\">Salesforce Marketing Cloud\u2019s<\/a> Cloud Pages are a powerful feature for creating interactive and dynamic forms.<\/p>\n\n\n\n<p>These forms can be used for lead collection, surveys, or any other data-gathering purposes. Once created, you can easily embed these forms on third-party websites to maximize their reach. <\/p>\n\n\n\n<p>This blog will walk you through the step-by-step process of creating a Cloud Page form and integrating it into a third-party site.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is a Cloud Page?<\/strong><\/h2>\n\n\n\n<p>A Cloud Page in <a href=\"https:\/\/webkul.com\/blog\/the-future-of-marketing-salesforce-marketing-cloud\/\">Salesforce Marketing Cloud <\/a>is a web page, designed for marketing purposes. These pages are highly customizable, making them ideal for forms, landing pages, and promotional content.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Steps to Create a Cloud Page Form<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1: Navigate to Cloud Pages<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Log in to your Salesforce Marketing Cloud account.<\/li>\n\n\n\n<li>Go to Web Studio, then select Cloud Pages.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"900\" height=\"466\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp\" alt=\"webstudio&gt;&gt; cloudPage\" class=\"wp-image-474628\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp 900w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio-300x155.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio-250x129.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio-768x398.webp 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">2: Create a New Landing Page<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Click the Create button and choose Landing Page as your page type.<\/li>\n\n\n\n<li>Give your page a meaningful name, like &#8220;Lead Capture Form.&#8221;<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"456\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/landingcloudpage-1-1200x456.webp\" alt=\"Landing cloud page\" class=\"wp-image-474627\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/landingcloudpage-1-1200x456.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/landingcloudpage-1-300x114.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/landingcloudpage-1-250x95.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/landingcloudpage-1-768x292.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/landingcloudpage-1.webp 1485w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">3: Design Your Form<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Use the drag-and-drop editor to add form components:\n<ul class=\"wp-block-list\">\n<li>Text Fields: For name, email, etc.<\/li>\n\n\n\n<li>Dropdowns: These are for options like country or preferences.<\/li>\n\n\n\n<li>Check Boxes: For terms and conditions or subscriptions.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Customize the form labels, placeholder text, and validation rules.<\/li>\n<\/ol>\n\n\n\n<p>Example Fields:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Name: Text Field<\/li>\n\n\n\n<li>Email: Text Field<\/li>\n\n\n\n<li>Address: Text Field<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;!DOCTYPE html&gt;\n&lt;html lang=&quot;en&quot;&gt;\n&lt;head&gt;\n    &lt;meta charset=&quot;UTF-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n    &lt;title&gt;Lead Capture Form&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    %%&#091;      \n            SET @FirstName = RequestParameter(&quot;FirstName&quot;)\n            SET @LastName = RequestParameter(&quot;LastName&quot;)\n            SET @Email = RequestParameter(&quot;Email&quot;)\n\n            SET @upsert1 = UpsertData(&quot;YourDataExtensionName&quot;, 1, \n                            &quot;subscriberkey&quot;, GUID(), \n                            &quot;FirstName&quot;, @FirstName,\n                            &quot;LastName&quot;, @LastName,\n                            &quot;Email&quot;, @Email, \n                            ) \n    %%]\n\n    &lt;h1&gt;Submit Your Details&lt;\/h1&gt;\n \n    &lt;form method=&quot;POST&quot; action=&quot;&quot;&gt;\n        &lt;label for=&quot;FirstName&quot;&gt;First Name:&lt;\/label&gt;&lt;br&gt;\n        &lt;input type=&quot;text&quot; id=&quot;FirstName&quot; name=&quot;FirstName&quot; required&gt;&lt;br&gt;&lt;br&gt;\n\n        &lt;label for=&quot;LastName&quot;&gt;Last Name:&lt;\/label&gt;&lt;br&gt;\n        &lt;input type=&quot;text&quot; id=&quot;LastName&quot; name=&quot;LastName&quot; required&gt;&lt;br&gt;&lt;br&gt;\n\n        &lt;label for=&quot;Email&quot;&gt;Email:&lt;\/label&gt;&lt;br&gt;\n        &lt;input type=&quot;email&quot; id=&quot;Email&quot; name=&quot;Email&quot; required&gt;&lt;br&gt;&lt;br&gt;\n\n        &lt;button type=&quot;submit&quot;&gt;Submit&lt;\/button&gt;\n    &lt;\/form&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">4: Configure Data Extensions<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Connect the form to a <a href=\"https:\/\/webkul.com\/blog\/data-extension-in-salesforce-marketing-cloud\/\">Data Extension<\/a> to store the submitted data:<\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Navigate to the form settings.<\/li>\n\n\n\n<li>Map the form fields to the corresponding columns in your Data Extension.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">5: Add Form Submission Logic<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Use AMPscript to control what happens after form submission.<br>For example, redirect users to a thank-you page:<br><code>%%[<br>SET @redirectURL = \"https:\/\/your-thank-you-page-url.com\"<br>Redirect(@redirectURL)<br>]%%<\/code><\/li>\n\n\n\n<li>Save your changes.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">6: Publish Your Cloud Page<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Click the Publish button.<\/li>\n\n\n\n<li>Copy the generated URL for your Cloud Page. This URL will be used to embed the form on a third-party site.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Steps to Embed a Cloud Page Form on a Site<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1: Generate an iFrame<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Embed your Cloud Page using an HTML<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;iframe \n    src=&quot;https:\/\/pub.s10.exacttarget.com\/xxxxxx&quot; \n    width=&quot;100%&quot; \n    height=&quot;600&quot; \n    style=&quot;border: none;&quot;&gt;\n&lt;\/iframe&gt;<\/pre>\n\n\n\n<p>Replace the <code>src<\/code> attribute value with the URL of your Cloud Page<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2: Customize the iFrame<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Adjust the width and height attributes to fit your site\u2019s design.<\/li>\n\n\n\n<li>Add CSS for additional styling if required.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3: Add the Code to Your Site<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Log in to your website\u2019s CMS (e.g., WordPress, Shopify, etc.).<\/li>\n\n\n\n<li>Paste the iFrame code in the desired location (e.g., a page editor or custom HTML block).<\/li>\n\n\n\n<li>Save and publish your changes.<\/li>\n<\/ol>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Conclusion<\/strong><br>Creating a Cloud Page form in Salesforce Marketing Cloud and embedding it into a third-party website is a straightforward process. <\/p>\n\n\n\n<p>By following the steps outlined above, you can easily create a dynamic and responsive form to capture leads, feedback, or any other type of user data.<\/p>\n\n\n\n<p>For advanced use cases, you can integrate Salesforce Marketing Cloud with third-party applications using APIs to enhance your data flow and automation.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" \/>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color has-medium-font-size wp-elements-8ff50b3aed93f89ad31fd283a283ce38\"><strong>For any queries regarding Salesforce Marketing Cloud or personalized solutions, contact our expert<\/strong>&nbsp;<a href=\"https:\/\/webkul.com\/Salesforce-consulting-services\/\">Salesforce Consultants<\/a>&nbsp;at&nbsp;<a href=\"mailto:support@webkul.com\">support@webkul.com<\/a><strong>&nbsp;or via<\/strong>&nbsp;<a href=\"https:\/\/eshopsync.com\/\">Live Chat<\/a>.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-black-color has-text-color has-link-color has-medium-font-size wp-elements-be8b4eefba9747ae641b0dc4b3eab631\"><strong>Let me know if you have any questions or need assistance with Salesforce Marketing Cloud! Our team is available year-round to provide customized solutions tailored to your business needs.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Salesforce Marketing Cloud\u2019s Cloud Pages are a powerful feature for creating interactive and dynamic forms. These forms can be used for lead collection, surveys, or any other data-gathering purposes. Once created, you can easily embed these forms on third-party websites to maximize their reach. This blog will walk you through the step-by-step process of creating <a href=\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":258,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1887],"tags":[15667],"class_list":["post-474442","post","type-post","status-publish","format-standard","hentry","category-salesforce","tag-marketingcloud"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create a Cloud Page and Embed It on a Site - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Cloud Page in Salesforce Marketing Cloud is a web page hosted on Salesforce servers, designed for marketing purposes.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create a Cloud Page and Embed It on a Site - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Cloud Page in Salesforce Marketing Cloud is a web page hosted on Salesforce servers, designed for marketing purposes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-20T13:18:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-22T11:01:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp\" \/>\n<meta name=\"author\" content=\"Faisal Siddiki\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Faisal Siddiki\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/\"},\"author\":{\"name\":\"Faisal Siddiki\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8254be583af324fbc864d611c6f96f0a\"},\"headline\":\"Create a Cloud Page and Embed It on a Site\",\"datePublished\":\"2024-11-20T13:18:04+00:00\",\"dateModified\":\"2024-11-22T11:01:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/\"},\"wordCount\":524,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp\",\"keywords\":[\"Marketingcloud\"],\"articleSection\":[\"Salesforce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/\",\"name\":\"Create a Cloud Page and Embed It on a Site - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp\",\"datePublished\":\"2024-11-20T13:18:04+00:00\",\"dateModified\":\"2024-11-22T11:01:28+00:00\",\"description\":\"Cloud Page in Salesforce Marketing Cloud is a web page hosted on Salesforce servers, designed for marketing purposes.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp\",\"width\":900,\"height\":466},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create a Cloud Page and Embed It on a Site\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8254be583af324fbc864d611c6f96f0a\",\"name\":\"Faisal Siddiki\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5d762d47f6cd7ab4fd052c6b73ec147a01e9c90ce258feafdb7b17175ed75622?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5d762d47f6cd7ab4fd052c6b73ec147a01e9c90ce258feafdb7b17175ed75622?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Faisal Siddiki\"},\"description\":\"Faisal Siddiki is a skilled Salesforce Developer with expertise in Lightning Web Components, Apex, and Service Cloud. As an integration specialist, he excels in leveraging sfdx to build robust, scalable solutions that enhance service delivery and optimize business processes within the Salesforce platform.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/faisal-siddiki012\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create a Cloud Page and Embed It on a Site - Webkul Blog","description":"Cloud Page in Salesforce Marketing Cloud is a web page hosted on Salesforce servers, designed for marketing purposes.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/","og_locale":"en_US","og_type":"article","og_title":"Create a Cloud Page and Embed It on a Site - Webkul Blog","og_description":"Cloud Page in Salesforce Marketing Cloud is a web page hosted on Salesforce servers, designed for marketing purposes.","og_url":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2024-11-20T13:18:04+00:00","article_modified_time":"2024-11-22T11:01:28+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp","type":"","width":"","height":""}],"author":"Faisal Siddiki","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Faisal Siddiki","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/"},"author":{"name":"Faisal Siddiki","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8254be583af324fbc864d611c6f96f0a"},"headline":"Create a Cloud Page and Embed It on a Site","datePublished":"2024-11-20T13:18:04+00:00","dateModified":"2024-11-22T11:01:28+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/"},"wordCount":524,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp","keywords":["Marketingcloud"],"articleSection":["Salesforce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/","url":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/","name":"Create a Cloud Page and Embed It on a Site - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp","datePublished":"2024-11-20T13:18:04+00:00","dateModified":"2024-11-22T11:01:28+00:00","description":"Cloud Page in Salesforce Marketing Cloud is a web page hosted on Salesforce servers, designed for marketing purposes.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/11\/webstudio.webp","width":900,"height":466},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-a-cloud-page-and-embed-it-on-a-site\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create a Cloud Page and Embed It on a Site"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8254be583af324fbc864d611c6f96f0a","name":"Faisal Siddiki","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5d762d47f6cd7ab4fd052c6b73ec147a01e9c90ce258feafdb7b17175ed75622?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5d762d47f6cd7ab4fd052c6b73ec147a01e9c90ce258feafdb7b17175ed75622?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Faisal Siddiki"},"description":"Faisal Siddiki is a skilled Salesforce Developer with expertise in Lightning Web Components, Apex, and Service Cloud. As an integration specialist, he excels in leveraging sfdx to build robust, scalable solutions that enhance service delivery and optimize business processes within the Salesforce platform.","url":"https:\/\/webkul.com\/blog\/author\/faisal-siddiki012\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/474442","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/258"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=474442"}],"version-history":[{"count":21,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/474442\/revisions"}],"predecessor-version":[{"id":475139,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/474442\/revisions\/475139"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=474442"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=474442"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=474442"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}