{"id":15500,"date":"2016-12-23T16:15:58","date_gmt":"2016-12-23T14:15:58","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=15500"},"modified":"2017-12-19T13:04:42","modified_gmt":"2017-12-19T11:04:42","slug":"html-email-validation-example","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/","title":{"rendered":"HTML Email Validation Example"},"content":{"rendered":"<p>Sometimes we might have to create web apps that collect user data e.g names, date of birth, username, emails or even the user phone number. It is one thing to collect user data, its another thing to make sure that the user has entered valid information.<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n[ulp id=&#8217;tgm4cmEWcKUikZNn&#8217;]<br \/>\n&nbsp;<br \/>\nFor example we should always check durning user registration or login, if the email entered is valid or even in existence.<br \/>\nIn this example we will learn how to validate users emails in HTML5.<br \/>\nFor this example we will use:<\/p>\n<ul>\n<li>A computer with a modern browser installed<\/li>\n<li>notepad++<\/li>\n<\/ul>\n<h2>1. Getting Started<\/h2>\n<p>The Email supplied by a user during registration on a website, is used to identify the user. That&#8217;s why it is impossible for two different users to register with the same email. If a new user tries to register with an already registered Email, an error message is displayed on the browser and the registration process is terminated after verification by the server.<br \/>\nIt is wise to validate a user email or any other data on the client side before sending the data to the server. This saves bandwith and helps free server resources.<\/p>\n<p>In this example we will create a form that will collect user data and submit them.<\/p>\n<h3>1.1 HTML Forms<\/h3>\n<p>In this section we will introduce HTML forms. If you are familiar with HTML forms, you can skip this section and go to the next.<\/p>\n<p>HTML forms allows users send data to a server or website.<\/p>\n<p>If a website needs to collect a user name, age or date of birth it\u2019s most likely going to use HTML forms. Login and registration systems for websites are built with html forms.<\/p>\n<p>HTML forms are created with the opening &lt;form&gt;\u00a0and closing\u00a0&lt;\/form&gt;tag. The form\u00a0tag defines an html form. Form elements are different, they can be text fields, checkboxes, radio buttons, submit buttons, and more.<\/p>\n<h3>1.1 Validating Emails<\/h3>\n<p>To validate Emails on the client side we use HTML5 special feature. One of great features of HTML5 is the ability to validate user input or data without having to write tedious scripts.<\/p>\n<p>All input element can be validated with the pattern attribute. The pattern attribute expects a case sensitive regular expression as its value. If the element&#8217;s value is not empty and doesn&#8217;t match the regular expression specified by the pattern\u00a0attribute, the element is considered invalid. A user won&#8217;t be able to submit a form with invalid input.<\/p>\n<p>If an element requires an attribute before submission, just add required to the input tag.&lt;input&gt; elements with their type\u00a0attribute set to the value\u00a0email\u00a0do not need a\u00a0pattern attribute to be validated. Specifying the\u00a0email\u00a0type requires that the field&#8217;s value must be a well-formed email address (or a comma-separated list of email addresses if it has the mutiple\u00a0attribute).<\/p>\n<p>Lets look at an example:<\/p>\n<p><span style=\"text-decoration: underline;\"><em>index.html<\/em><\/span><\/p>\n<pre class=\"brush:html;highlight:[17]\">&lt;!DOCTYPE html&gt; \r\n &lt;html lang=\u201den\u201d&gt; \r\n &lt;head&gt;    \r\n &lt;title&gt;Membership Form&lt;\/title&gt;     \r\n&lt;\/head&gt;\r\n &lt;body&gt;    \r\n &lt;h1&gt;Membership Form&lt;\/h1&gt;\r\n    &lt;p&gt;Thanks for choosing to join The Programming Language Club.&lt;\/p&gt;\r\n    &lt;form action=index.php method=post&gt;   \r\n\t&lt;div style=\"width: 30em;\" &gt;\r\n        &lt;label for=firstName&gt;First name&lt;\/label&gt;&lt;br&gt;        &lt;input type=text name=firstName id=firstName required \/&gt;&lt;br&gt;&lt;br&gt;\r\n\r\n\r\n        &lt;label for=lastName&gt;Last name&lt;\/label&gt; &lt;br&gt;       &lt;input type=text name=lastName id=lastName  required\/&gt;&lt;br&gt;&lt;br&gt;\r\n\r\n\r\n &lt;label for=mail&gt;Email&lt;\/label&gt;&lt;br&gt;        &lt;input type=email name=mail id=mail required \/&gt;&lt;br&gt;&lt;br&gt;\r\n\r\n\r\n\r\n        &lt;label for=password1&gt;Choose a password&lt;\/label&gt; &lt;br&gt;       &lt;input type=password name=password1 id=password1 required \/&gt; &lt;br&gt;  &lt;br&gt;  \r\n\t\t&lt;label for=password2&gt;Retype password&lt;\/label&gt;&lt;br&gt;        &lt;input type=password name=password2 id=password2 required \/&gt; &lt;br&gt; &lt;br&gt;\r\n        &lt;label for=genderMale&gt;Are you male...&lt;\/label&gt;        &lt;input type=radio name=gender id=genderMale value=Male \/&gt;       \r\n\t\t&lt;label for=genderFemale&gt;...or female?&lt;\/label&gt; &lt;input type=radio name=gender id=genderFemale value=Female checked \/&gt; &lt;br&gt; &lt;br&gt;\r\n        &lt;label for=favoriteWidget&gt;What's your favorite language?&lt;\/label&gt;        &lt;select name=favoriteWidget id=favoriteWidget size=1&gt;        \r\n\t\t&lt;option value=java&gt;Java&lt;\/option&gt;     \r\n\t\t&lt;option value=php&gt;PHP&lt;\/option&gt;          \r\n\t\t&lt;option value=phyton&gt;PHYTON&lt;\/option&gt;     \r\n\t\t&lt;\/select&gt; &lt;br&gt; &lt;br&gt;\r\n        &lt;label for=newsletter&gt;Do you want to receive our newsletter?&lt;\/label&gt;        \r\n\t\t&lt;input type=checkbox name=newsletter id=newsletter value=yes \/&gt; &lt;br&gt; &lt;br&gt;\r\n        &lt;label for=comments&gt;Any comments?&lt;\/label&gt;       \r\n\t\t&lt;textarea name=comments id=comments rows=4 cols=50&gt; &lt;\/textarea&gt;\r\n        &lt;div style=\u201dclear: both;\u201d&gt;         \r\n\t&lt;input type=submit name=submitButton id=submitButton value=Send Details \/&gt;       \r\n\t&lt;input type=reset name=resetButton id=resetButton value=\"Reset Form\" style=\"margin-right: 20px;\" \/&gt;      \r\n\t&lt;\/div&gt;     \r\n\t&lt;\/div&gt;   \r\n\t&lt;\/form&gt;\r\n  &lt;\/body&gt; &lt;\/html&gt;\r\n<\/pre>\n<p>This is a typical example of an HTML form but you should pay attention to line 17. Thats where we declare our input tag with type email. Fill all the fields in the form except that provided for email, try to submit and see what happens. Also enter an email address that is not properly formatted and submit it,see what happens.<br \/>\nIn both cases an error message is displayed and the form is not submitted.<\/p>\n<h2>2. Summary<\/h2>\n<p>In this example we learnt about email validation in HTML5.<\/p>\n<h2>3. Download the source code<\/h2>\n<div class=\"download\"><strong>Download<\/strong><br \/>\nYou can download the full source code of this example here: <strong><strong><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/12\/html5emailvalidation.zip\">html5emailvalidation<\/a><\/strong><\/strong><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Sometimes we might have to create web apps that collect user data e.g names, date of birth, username, emails or even the user phone number. It is one thing to collect user data, its another thing to make sure that the user has entered valid information. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [ulp &hellip;<\/p>\n","protected":false},"author":164,"featured_media":914,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[415,416],"class_list":["post-15500","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html5","tag-email-validation","tag-html"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>HTML Email Validation Example - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Sometimes we might have to create web apps that collect user data e.g names, date of birth, username, emails or even the user phone number. It is one\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML Email Validation Example - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Sometimes we might have to create web apps that collect user data e.g names, date of birth, username, emails or even the user phone number. It is one\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2016-12-23T14:15:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-12-19T11:04:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Olayemi Odunayo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Olayemi Odunayo\" \/>\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:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/\"},\"author\":{\"name\":\"Olayemi Odunayo\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8\"},\"headline\":\"HTML Email Validation Example\",\"datePublished\":\"2016-12-23T14:15:58+00:00\",\"dateModified\":\"2017-12-19T11:04:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/\"},\"wordCount\":608,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg\",\"keywords\":[\"Email validation\",\"HTML\"],\"articleSection\":[\"HTML5\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/\",\"name\":\"HTML Email Validation Example - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg\",\"datePublished\":\"2016-12-23T14:15:58+00:00\",\"dateModified\":\"2017-12-19T11:04:42+00:00\",\"description\":\"Sometimes we might have to create web apps that collect user data e.g names, date of birth, username, emails or even the user phone number. It is one\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML5\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/html5\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"HTML Email Validation Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8\",\"name\":\"Olayemi Odunayo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/016b2a353262962fceecf5c274161cd9ef60fdf1593ec95e71d37f5fd9b444f6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/016b2a353262962fceecf5c274161cd9ef60fdf1593ec95e71d37f5fd9b444f6?s=96&d=mm&r=g\",\"caption\":\"Olayemi Odunayo\"},\"description\":\"I am a programmer and web developer, who has experience in developing websites and writing desktop and mobile applications. I have worked with both schematic and schemaless databases. I am also familiar with third party API and working with cloud servers. I do programming on the client side with Java, JavaScript, html, Ajax and CSS while I use PHP for server side programming.\",\"sameAs\":[\"https:\/\/www.webcodegeeks.com\/\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/olayemi-odunayo\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HTML Email Validation Example - Web Code Geeks - 2026","description":"Sometimes we might have to create web apps that collect user data e.g names, date of birth, username, emails or even the user phone number. It is one","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:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/","og_locale":"en_US","og_type":"article","og_title":"HTML Email Validation Example - Web Code Geeks - 2026","og_description":"Sometimes we might have to create web apps that collect user data e.g names, date of birth, username, emails or even the user phone number. It is one","og_url":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2016-12-23T14:15:58+00:00","article_modified_time":"2017-12-19T11:04:42+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg","type":"image\/jpeg"}],"author":"Olayemi Odunayo","twitter_card":"summary_large_image","twitter_creator":"@webcodegeeks","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Olayemi Odunayo","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/"},"author":{"name":"Olayemi Odunayo","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8"},"headline":"HTML Email Validation Example","datePublished":"2016-12-23T14:15:58+00:00","dateModified":"2017-12-19T11:04:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/"},"wordCount":608,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg","keywords":["Email validation","HTML"],"articleSection":["HTML5"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/","url":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/","name":"HTML Email Validation Example - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg","datePublished":"2016-12-23T14:15:58+00:00","dateModified":"2017-12-19T11:04:42+00:00","description":"Sometimes we might have to create web apps that collect user data e.g names, date of birth, username, emails or even the user phone number. It is one","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/html5-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/html5\/html-email-validation-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"HTML5","item":"https:\/\/www.webcodegeeks.com\/category\/html5\/"},{"@type":"ListItem","position":3,"name":"HTML Email Validation Example"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8","name":"Olayemi Odunayo","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/016b2a353262962fceecf5c274161cd9ef60fdf1593ec95e71d37f5fd9b444f6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/016b2a353262962fceecf5c274161cd9ef60fdf1593ec95e71d37f5fd9b444f6?s=96&d=mm&r=g","caption":"Olayemi Odunayo"},"description":"I am a programmer and web developer, who has experience in developing websites and writing desktop and mobile applications. I have worked with both schematic and schemaless databases. I am also familiar with third party API and working with cloud servers. I do programming on the client side with Java, JavaScript, html, Ajax and CSS while I use PHP for server side programming.","sameAs":["https:\/\/www.webcodegeeks.com\/"],"url":"https:\/\/www.webcodegeeks.com\/author\/olayemi-odunayo\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/15500","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/164"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=15500"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/15500\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/914"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=15500"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=15500"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=15500"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}