{"id":18031,"date":"2023-09-25T06:20:36","date_gmt":"2023-09-25T06:20:36","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18031"},"modified":"2023-09-25T06:20:36","modified_gmt":"2023-09-25T06:20:36","slug":"html-form","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/html-form\/","title":{"rendered":"HTML Form"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg\" alt=\"\" \/><\/p>\n<p>HTML forms are one of the best ways to collect information from the user so that the developer can perform the remaining operations appropriately. In some cases, the code is added based on the expected response of the user. As we progress through this article, we will learn more about HTML forms.<\/p>\n<h2>What are HTML Forms?<\/h2>\n<p>The HTML forms are one of the essential components of the web that enables the user to submit the information accordingly on the website. The HTML form does not contain any interactive controls. In simple words, we can refer to the HTML forms as an easy way of collecting user information and then sending the collected information to the server.<br \/>\nThe HTML forms consist of a set of form elements that allow the user to enter the data, make selections, and then submit it to the server for processing. HTML forms consist of one or more labels, input fields, and buttons.<\/p>\n<p>The HTML form code is:<br \/>\n&lt; form action=&quot;server url&quot; method=&quot;get|post&quot;&gt;<br \/>\n\/\/input controls<br \/>\n&lt; \/form&gt;  <\/p>\n<p>The form action will decide that after submitting the form where the user will redirect. Whereas the method will describe the type of method used to send the data in the get method the value submitted by the user will be visible in the url whereas it is not the case with post.<\/p>\n<h2>Importance of HTML Forms<\/h2>\n<p>The importance of HTML forms is explained below:<\/p>\n<ul>\n<li>They are used to gather information from the user like his contact details, survey responses, feedback, user registrations, and more.<\/li>\n<li>It is also used for validation which makes sure the data submitted is correct and accurate.<\/li>\n<li>They also enhance the user experience as when the user submits his review of the website the developer can change the website according to the reviews.<\/li>\n<li>They also provide security as when we use these forms in login or signup forms then only the valid candidate can access our website.<\/li>\n<li>We can also have some additional features in the form like file upload, etc, which will make the user upload the details.<\/li>\n<\/ul>\n<h2>Elements and Attributes of HTML Form<\/h2>\n<p>We will discuss the various elements and attributes of HTML Form.<\/p>\n<ul>\n<li>&lt; label&gt;: It is used to define the form elements.<\/li>\n<li>&lt; input&gt;: It is used to get input from the user in various formats.<\/li>\n<li>&lt; button&gt;: It will create a clickable button that will control other elements or its own functionality.<\/li>\n<li>&lt; select&gt;: This is used to create a dropdown list.<\/li>\n<li>&lt; textarea&gt;: It is used to get the input of long text content.<\/li>\n<\/ul>\n<h3>Label<\/h3>\n<p>The label is used to tell the name of the corresponding input tag. We can also connect the label and a particular input tag.<\/p>\n<h3>Textbox in HTML Form<\/h3>\n<p>We can create a textbox in the form by assigning the value of the input tag to the text. This will take a single line of input.<br \/>\nThe syntax for performing this will be like this:<br \/>\n&lt; input type=&quot;text&quot; \/&gt;<\/p>\n<h3>Password in HTML Form<\/h3>\n<p>We can change the input type to password to get the input password. Now the text will not be directly visible it will be shown either by dots or stars.<br \/>\n&lt; input type=&quot;password&quot; \/&gt;<\/p>\n<h3>Email<\/h3>\n<p>This is preferred to use Email instead of text while taking input of an email id as by setting the type as email the browser will automatically set some rules and regulations and will check whether a correct email id has been entered or not.<br \/>\n&lt; input type=&quot;email&quot; \/&gt;<\/p>\n<h3>Radio Button<\/h3>\n<p>We can create a radio button by using the input type to the radio. As the radio button provides a limited number of choices to the user.<br \/>\n&lt; input type=&quot;radio&quot; name=&quot;radio_button_name&quot; value=&quot;radio_button_value&quot; \/&gt;<\/p>\n<h3>Drop Down List<\/h3>\n<p>We can create a drop-down list by using the select tag followed by various options that we want to enter in the drop-down list by using the option tag.<br \/>\n&lt; select name=&quot;study&quot; id=&quot;&quot;&gt;<br \/>\n&lt; option value=&quot;1&quot;&gt;1st<\/option><br \/>\n&lt; \/select&gt;<\/p>\n<h3>Submit<\/h3>\n<p>The submit is the button that resets the data to the form and sends the submitted data to the server and redirects the user to the corresponding referenced page or site.<\/p>\n<p><input type=\"submit\" value=\"submit\">  <\/p>\n<h3>Example of HTML Forms<\/h3>\n<p>Now we will discuss the HTML form example.<br \/>\nCode<br \/>\n&lt; form action=&quot;index.html&quot; method=&quot;get&quot;&gt;<br \/>\n&lt; label for=&quot;name&quot;&gt;Name<\/label><br \/>\n&lt; input name=&quot;name&quot; id=&quot;name&quot; placeholder=&quot;name&quot; type=&quot;text&quot; \/&gt;<br \/>\n&lt; br \/&gt;<br \/>\n&lt; br \/&gt;<br \/>\n&lt; label for=&quot;&quot;&gt;Email<\/label><br \/>\n&lt; input placeholder=&quot;email&quot; type=&quot;email&quot; \/&gt;<br \/>\n&lt; br \/&gt;<br \/>\n&lt; br \/&gt;<br \/>\n&lt; label for=&quot;&quot;&gt;Year of Study<\/label><br \/>\n&lt; select name=&quot;study&quot; id=&quot;&quot;&gt;<br \/>\n&lt; option value=&quot;1&quot;&gt;1st<\/option><br \/>\n&lt; option value=&quot;2&quot;&gt;2nd<\/option><br \/>\n&lt; option value=&quot;3&quot;&gt;3rd<\/option><br \/>\n&lt; option value=&quot;4&quot;&gt;4th<\/option><br \/>\n&lt; \/select&gt;<br \/>\n&lt; br \/&gt;<br \/>\n&lt; br \/&gt;<br \/>\n&lt; label for=&quot;radio-button&quot;&gt;Graduate<\/label><br \/>\n&lt; input type=&quot;radio&quot; name=&quot;&quot; id=&quot;radio-button&quot; \/&gt;<br \/>\n&lt; br \/&gt;<br \/>\n&lt; br \/&gt;<br \/>\n&lt; label for=&quot;&quot;&gt;Password<\/label><br \/>\n&lt; input type=&quot;password&quot; name=&quot;&quot; id=&quot;&quot; \/&gt;<\/p>\n<p>&lt; br \/&gt;<br \/>\n&lt; br \/&gt;<br \/>\n&lt; input type=&quot;submit&quot; name=&quot;&quot; id=&quot;&quot; \/&gt;<br \/>\n&lt; \/form&gt;<\/p>\n<p><strong>Output<\/strong><br \/>\n<img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622809510-download%20%2843%29.png\" alt=\"\" \/><\/p>\n<p><strong>Explanation<\/strong><br \/>\nIn the above code, we have used each and every attribute that we have explained above part of the blog, like text, email, drop down, radio button, password, submit, etc.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nWe studied HTML Forms and discussed what they are and their importance, as well as the syntax of HTML forms, attributes and elements of HTML forms, and various elements of HTML forms with their use and syntax. Finally, we used all of those elements in an example.<\/p>\n<h2>Frequently Asked Questions (FAQs)<\/h2>\n<p>Here are some of the frequently asked questions in HTML form.<\/p>\n<p><strong>Q1. What is an HTML form, and what is its purpose?<\/strong><br \/>\nAn HTML form is a container for collecting and submitting user input on a web page. It allows users to enter data, such as text, numbers, selections, and submit it to a server for processing. Forms are used for various purposes, including user registration, login, search, and data submission.<\/p>\n<p><strong>Q2. How do I create a basic HTML form?<\/strong><br \/>\nTo create a basic HTML form, you use the <\/p>\n<form> element. Inside the <\/p>\n<form> element, you can include various form controls like text fields, radio buttons, checkboxes, and buttons to gather user input. You define the action attribute to specify where the form data should be sent, and the method attribute to determine how the data should be submitted (GET or POST).<\/p>\n<p><strong>Q3. What are form elements and form controls in HTML?<\/strong><br \/>\nForm elements are HTML elements used to create different parts of a form, including text input fields, checkboxes, radio buttons, select boxes, and buttons. These elements are called form controls because they allow users to interact with the form and provide input.<\/p>\n<p><strong>Q4. How to validate user input in an HTML form?<\/strong><br \/>\nYou can validate user input in an HTML form using both client-side and server-side validation. Client-side validation is performed using JavaScript to check input data before submission, providing immediate feedback to users. Server-side validation is essential for security and data integrity and is performed on the server after form submission.<\/p>\n<p><strong>Q5. What is the purpose of the <label> element in HTML forms?<\/strong><br \/>\nThe <label> element is used to associate a label with a form control, such as a text input field or a checkbox. It improves the accessibility of the form by providing a text description for the form control. Clicking on the label will focus or select the associated control, making it easier for users to interact with the form.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>HTML forms are one of the best ways to collect information from the user so that the developer can perform the remaining operations appropriately. In some cases, the code is added based on the expected response of the user. As we progress through this article, we will learn more about HTML forms. What are HTML [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[196],"tags":[],"class_list":["post-18031","post","type-post","status-publish","format-standard","hentry","category-html"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>HTML Form<\/title>\n<meta name=\"description\" content=\"HTML forms are one of the best ways to collect information from the user so that the developer can perform the remaining operations appropriately.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/html-form\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML Form\" \/>\n<meta property=\"og:description\" content=\"HTML forms are one of the best ways to collect information from the user so that the developer can perform the remaining operations appropriately.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/html-form\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-25T06:20:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"HTML Form\",\"datePublished\":\"2023-09-25T06:20:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/\"},\"wordCount\":1352,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/html-form\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/html-form\/\",\"name\":\"HTML Form\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg\",\"datePublished\":\"2023-09-25T06:20:36+00:00\",\"description\":\"HTML forms are one of the best ways to collect information from the user so that the developer can perform the remaining operations appropriately.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/html-form\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/html-form\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/html\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"HTML Form\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HTML Form","description":"HTML forms are one of the best ways to collect information from the user so that the developer can perform the remaining operations appropriately.","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:\/\/prepbytes.com\/blog\/html-form\/","og_locale":"en_US","og_type":"article","og_title":"HTML Form","og_description":"HTML forms are one of the best ways to collect information from the user so that the developer can perform the remaining operations appropriately.","og_url":"https:\/\/prepbytes.com\/blog\/html-form\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-09-25T06:20:36+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/html-form\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/html-form\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"HTML Form","datePublished":"2023-09-25T06:20:36+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/html-form\/"},"wordCount":1352,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/html-form\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/html-form\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/html-form\/","url":"https:\/\/prepbytes.com\/blog\/html-form\/","name":"HTML Form","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/html-form\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/html-form\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg","datePublished":"2023-09-25T06:20:36+00:00","description":"HTML forms are one of the best ways to collect information from the user so that the developer can perform the remaining operations appropriately.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/html-form\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/html-form\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/html-form\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695622794566-Topic%20%2859%29.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/html-form\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"HTML","item":"https:\/\/prepbytes.com\/blog\/category\/html\/"},{"@type":"ListItem","position":3,"name":"HTML Form"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18031","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=18031"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18031\/revisions"}],"predecessor-version":[{"id":18035,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18031\/revisions\/18035"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18031"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18031"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18031"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}