{"id":61,"date":"2024-07-13T10:35:57","date_gmt":"2024-07-13T10:35:57","guid":{"rendered":"https:\/\/shaplakanon.com\/wdc\/?p=61"},"modified":"2024-07-13T10:35:58","modified_gmt":"2024-07-13T10:35:58","slug":"html-forms-tutorial-for-beginners","status":"publish","type":"post","link":"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/","title":{"rendered":"HTML Forms Tutorial for Beginners"},"content":{"rendered":"\n<p>Welcome to this tutorial on HTML forms! In this guide, you will learn how to create a simple HTML file, add form elements, attributes, and input types, and view the results in your web browser using a web hosting file manager. Let&#8217;s get started!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Log into Your Web Hosting Control Panel<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open your web browser and go to your web hosting control panel login page (e.g., cPanel, Plesk, etc.).<\/li>\n\n\n\n<li>Enter your username and password to log in.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Open the File Manager<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Once logged in, look for the <code>File Manager<\/code> option in your control panel dashboard.<\/li>\n\n\n\n<li>Click on <code>File Manager<\/code> to open it.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Navigate to the Public Directory<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>In the File Manager, navigate to the <code>public_html<\/code> directory or the appropriate directory where you want to create your HTML file.<\/li>\n\n\n\n<li>This directory is typically where you place files that you want to be accessible via your web domain.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Create a New File<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>In the <code>public_html<\/code> directory, click on the <code>+ File<\/code> or <code>New File<\/code> button.<\/li>\n\n\n\n<li>Name the new file <code>forms.html<\/code> and click <code>Create New File<\/code>.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Edit the HTML File<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Locate the <code>forms.html<\/code> file you just created in the file list.<\/li>\n\n\n\n<li>Right-click on <code>forms.html<\/code> and select <code>Edit<\/code> or use the Edit button\/menu option to open the file in the text editor provided by the file manager.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Add HTML Form Code<\/h3>\n\n\n\n<p>Copy and paste the following HTML code into the text editor:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n&lt;head&gt;\n    &lt;title&gt;HTML Forms Tutorial&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n\n&lt;h1&gt;HTML Forms Examples&lt;\/h1&gt;\n\n&lt;h2&gt;Basic Form&lt;\/h2&gt;\n&lt;form action=\"\/submit_form\" method=\"post\"&gt;\n  &lt;label for=\"fname\"&gt;First name:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"text\" id=\"fname\" name=\"fname\"&gt;&lt;br&gt;\n  &lt;label for=\"lname\"&gt;Last name:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"text\" id=\"lname\" name=\"lname\"&gt;&lt;br&gt;&lt;br&gt;\n  &lt;input type=\"submit\" value=\"Submit\"&gt;\n&lt;\/form&gt;\n\n&lt;h2&gt;Form with Various Input Types&lt;\/h2&gt;\n&lt;form action=\"\/submit_form\" method=\"post\"&gt;\n  &lt;label for=\"email\"&gt;Email:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"email\" id=\"email\" name=\"email\"&gt;&lt;br&gt;\n  &lt;label for=\"pwd\"&gt;Password:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"password\" id=\"pwd\" name=\"pwd\"&gt;&lt;br&gt;\n  &lt;label for=\"birthday\"&gt;Birthday:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"date\" id=\"birthday\" name=\"birthday\"&gt;&lt;br&gt;\n  &lt;label for=\"quantity\"&gt;Quantity (between 1 and 5):&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"number\" id=\"quantity\" name=\"quantity\" min=\"1\" max=\"5\"&gt;&lt;br&gt;&lt;br&gt;\n  &lt;input type=\"submit\" value=\"Submit\"&gt;\n&lt;\/form&gt;\n\n&lt;h2&gt;Form with Attributes&lt;\/h2&gt;\n&lt;form action=\"\/submit_form\" method=\"post\" target=\"_blank\"&gt;\n  &lt;label for=\"username\"&gt;Username:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"text\" id=\"username\" name=\"username\" required&gt;&lt;br&gt;\n  &lt;label for=\"phone\"&gt;Phone number:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"tel\" id=\"phone\" name=\"phone\"&gt;&lt;br&gt;\n  &lt;label for=\"website\"&gt;Website:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"url\" id=\"website\" name=\"website\"&gt;&lt;br&gt;&lt;br&gt;\n  &lt;input type=\"submit\" value=\"Submit\"&gt;\n&lt;\/form&gt;\n\n&lt;h2&gt;Form with Input Attributes&lt;\/h2&gt;\n&lt;form action=\"\/submit_form\" method=\"post\"&gt;\n  &lt;label for=\"country\"&gt;Country:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"text\" id=\"country\" name=\"country\" list=\"countries\"&gt;&lt;br&gt;\n  &lt;datalist id=\"countries\"&gt;\n    &lt;option value=\"USA\"&gt;\n    &lt;option value=\"Canada\"&gt;\n    &lt;option value=\"Mexico\"&gt;\n    &lt;option value=\"Germany\"&gt;\n    &lt;option value=\"France\"&gt;\n  &lt;\/datalist&gt;\n  &lt;br&gt;\n  &lt;label for=\"file\"&gt;Upload a file:&lt;\/label&gt;&lt;br&gt;\n  &lt;input type=\"file\" id=\"file\" name=\"file\"&gt;&lt;br&gt;&lt;br&gt;\n  &lt;input type=\"submit\" value=\"Submit\"&gt;\n&lt;\/form&gt;\n\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p>This code includes various HTML forms and form elements:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A basic form with text inputs and a submit button.<\/li>\n\n\n\n<li>A form with different input types such as email, password, date, and number.<\/li>\n\n\n\n<li>A form with attributes like <code>target=\"_blank\"<\/code> and required fields.<\/li>\n\n\n\n<li>A form using input attributes like <code>list<\/code> and <code>file<\/code>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7: Save the File<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>After pasting the code, click <code>Save<\/code> or use the save option in the text editor.<\/li>\n\n\n\n<li>Close the text editor once the file is saved.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8: View the File in a Web Browser<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open your preferred web browser (e.g., Chrome, Firefox, Edge, Safari).<\/li>\n\n\n\n<li>Type your domain name in the address bar followed by <code>\/forms.html<\/code> (e.g., <code>http:\/\/yourdomain.com\/forms.html<\/code>).<\/li>\n\n\n\n<li>You should now see a webpage displaying the different forms and input elements as specified in your HTML code.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Practicing on Your Own<\/h3>\n\n\n\n<p>To practice creating and modifying HTML forms, follow these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Experiment with Different Elements<\/strong>: Add more form elements like radio buttons, checkboxes, and text areas to your forms.<\/li>\n\n\n\n<li><strong>Modify Attributes<\/strong>: Change the attributes of your form elements (e.g., <code>maxlength<\/code>, <code>pattern<\/code>, <code>placeholder<\/code>) to see how they affect the input fields.<\/li>\n\n\n\n<li><strong>Add Styles<\/strong>: Use CSS to style your forms and make them more visually appealing.<\/li>\n\n\n\n<li><strong>Test Submissions<\/strong>: Set up a simple server or use form submission services to test the form submission process.<\/li>\n<\/ol>\n\n\n\n<p>By practicing these steps, you&#8217;ll become more familiar with HTML forms and their various attributes and input types. Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Welcome to this tutorial on HTML forms! In this guide, you will learn how to create a simple HTML file, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[14],"tags":[],"class_list":["post-61","post","type-post","status-publish","format-standard","hentry","category-html"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>HTML Forms Tutorial for Beginners - Web Development Course<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML Forms Tutorial for Beginners - Web Development Course\" \/>\n<meta property=\"og:description\" content=\"Welcome to this tutorial on HTML forms! In this guide, you will learn how to create a simple HTML file, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Development Course\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-13T10:35:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-13T10:35:58+00:00\" \/>\n<meta name=\"author\" content=\"ShaplaKanon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ShaplaKanon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/html-forms-tutorial-for-beginners\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/html-forms-tutorial-for-beginners\\\/\"},\"author\":{\"name\":\"ShaplaKanon\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#\\\/schema\\\/person\\\/f5f224239283c27426dadc2e4cc9a825\"},\"headline\":\"HTML Forms Tutorial for Beginners\",\"datePublished\":\"2024-07-13T10:35:57+00:00\",\"dateModified\":\"2024-07-13T10:35:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/html-forms-tutorial-for-beginners\\\/\"},\"wordCount\":453,\"commentCount\":0,\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/html-forms-tutorial-for-beginners\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/html-forms-tutorial-for-beginners\\\/\",\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/html-forms-tutorial-for-beginners\\\/\",\"name\":\"HTML Forms Tutorial for Beginners - Web Development Course\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#website\"},\"datePublished\":\"2024-07-13T10:35:57+00:00\",\"dateModified\":\"2024-07-13T10:35:58+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#\\\/schema\\\/person\\\/f5f224239283c27426dadc2e4cc9a825\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/html-forms-tutorial-for-beginners\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/html-forms-tutorial-for-beginners\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/html-forms-tutorial-for-beginners\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML Forms Tutorial for Beginners\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#website\",\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/\",\"name\":\"Web Development Course\",\"description\":\"Become a Web Developer from Home\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#\\\/schema\\\/person\\\/f5f224239283c27426dadc2e4cc9a825\",\"name\":\"ShaplaKanon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g\",\"caption\":\"ShaplaKanon\"},\"sameAs\":[\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/\"],\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/author\\\/sabahat\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HTML Forms Tutorial for Beginners - Web Development Course","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:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/","og_locale":"en_US","og_type":"article","og_title":"HTML Forms Tutorial for Beginners - Web Development Course","og_description":"Welcome to this tutorial on HTML forms! In this guide, you will learn how to create a simple HTML file, [&hellip;]","og_url":"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/","og_site_name":"Web Development Course","article_published_time":"2024-07-13T10:35:57+00:00","article_modified_time":"2024-07-13T10:35:58+00:00","author":"ShaplaKanon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ShaplaKanon","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/#article","isPartOf":{"@id":"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/"},"author":{"name":"ShaplaKanon","@id":"https:\/\/shaplakanon.com\/wdc\/#\/schema\/person\/f5f224239283c27426dadc2e4cc9a825"},"headline":"HTML Forms Tutorial for Beginners","datePublished":"2024-07-13T10:35:57+00:00","dateModified":"2024-07-13T10:35:58+00:00","mainEntityOfPage":{"@id":"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/"},"wordCount":453,"commentCount":0,"articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/","url":"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/","name":"HTML Forms Tutorial for Beginners - Web Development Course","isPartOf":{"@id":"https:\/\/shaplakanon.com\/wdc\/#website"},"datePublished":"2024-07-13T10:35:57+00:00","dateModified":"2024-07-13T10:35:58+00:00","author":{"@id":"https:\/\/shaplakanon.com\/wdc\/#\/schema\/person\/f5f224239283c27426dadc2e4cc9a825"},"breadcrumb":{"@id":"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/shaplakanon.com\/wdc\/html-forms-tutorial-for-beginners\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/shaplakanon.com\/wdc\/"},{"@type":"ListItem","position":2,"name":"HTML Forms Tutorial for Beginners"}]},{"@type":"WebSite","@id":"https:\/\/shaplakanon.com\/wdc\/#website","url":"https:\/\/shaplakanon.com\/wdc\/","name":"Web Development Course","description":"Become a Web Developer from Home","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/shaplakanon.com\/wdc\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/shaplakanon.com\/wdc\/#\/schema\/person\/f5f224239283c27426dadc2e4cc9a825","name":"ShaplaKanon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g","caption":"ShaplaKanon"},"sameAs":["https:\/\/shaplakanon.com\/wdc\/"],"url":"https:\/\/shaplakanon.com\/wdc\/author\/sabahat\/"}]}},"_links":{"self":[{"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/posts\/61","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/comments?post=61"}],"version-history":[{"count":1,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/posts\/61\/revisions"}],"predecessor-version":[{"id":62,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/posts\/61\/revisions\/62"}],"wp:attachment":[{"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/media?parent=61"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/categories?post=61"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/tags?post=61"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}