{"id":36,"date":"2015-07-16T06:16:51","date_gmt":"2015-07-16T05:16:51","guid":{"rendered":"https:\/\/yellowweb.id\/blog\/?p=36"},"modified":"2015-07-20T06:31:01","modified_gmt":"2015-07-20T05:31:01","slug":"berkenalan-dengan-tag-html","status":"publish","type":"post","link":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/","title":{"rendered":"Berkenalan dengan Tag HTML"},"content":{"rendered":"<p><a href=\"https:\/\/yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-37 size-full\" src=\"https:\/\/yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag.jpg\" alt=\"yellowweb_tag\" width=\"2213\" height=\"1378\" srcset=\"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag.jpg 2213w, https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag-300x187.jpg 300w, https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag-1024x638.jpg 1024w\" sizes=\"auto, (max-width: 2213px) 100vw, 2213px\" \/><\/a>Halo teman-teman, kali ini kita akan mencoba berkenalan dengan Tag HTML, karena dasar dari mempelajari <a href=\"https:\/\/en.wikipedia.org\/wiki\/HTML\" target=\"_blank\">HTML<\/a> adalah dengan mengenal tag-tag tersebut.<\/p>\n<p><!--more-->\u00a0 Ada beberapa <a href=\"http:\/\/www.w3schools.com\/html\/html5_intro.asp\" target=\"_blank\">tag-tag HTML<\/a> yang wajib kita ketahui, diantaranya adalah:<\/p>\n<p><span style=\"color: #0000ff;\"><strong>1. <a style=\"color: #0000ff;\" href=\"http:\/\/www.w3schools.com\/html\/html_basic.asp\" target=\"_blank\">Tag HTML Heading<\/a><\/strong><\/span><\/p>\n<p>Berfungsi untuk memformat sebuah tulisan menjadi cetak tebal dan memberikan jarak\/ baris. Ada beberapa level untuk tag heading ini dan biasanya digunakan untuk membuat judul artikel.<\/p>\n<pre class=\"lang:default decode:true \">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head lang=\"en\"&gt;\r\n    &lt;meta charset=\"UTF-8\"&gt;\r\n    &lt;title&gt;Tag HTML Headings&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n    &lt;h1&gt;Tulisan dengan Heading Level 1&lt;\/h1&gt;\r\n    &lt;h2&gt;Tulisan dengan Heading Level 2&lt;\/h2&gt;\r\n    &lt;h3&gt;Tulisan dengan Heading Level 3&lt;\/h3&gt;\r\n    &lt;h4&gt;Tulisan dengan Heading Level 4&lt;\/h4&gt;\r\n    &lt;h5&gt;Tulisan dengan Heading Level 5&lt;\/h5&gt;\r\n    &lt;h6&gt;Tulisan dengan Heading Level 6&lt;\/h6&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p><span style=\"color: #0000ff;\"><strong>\u00a02. <a style=\"color: #0000ff;\" href=\"http:\/\/www.w3schools.com\/html\/html_basic.asp\" target=\"_blank\">Tag HTML Paragraf<\/a><\/strong><\/span><\/p>\n<p>Berfungsi untuk membuat paragraf pada HTML.<\/p>\n<pre class=\"lang:default decode:true\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head lang=\"en\"&gt;\r\n    &lt;meta charset=\"UTF-8\"&gt;\r\n    &lt;title&gt;Tag HTML Paragraf&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n    &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque nec aliquam neque. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus quam tortor, porttitor eget semper eu, convallis sit amet dolor. Curabitur lacinia massa sit amet sapien luctus sollicitudin. Nullam tristique vitae sem nec auctor. Curabitur tincidunt neque quis ante facilisis, in faucibus felis dapibus. Suspendisse tempus tincidunt lectus eget semper. In dapibus venenatis sem lobortis fringilla. Etiam sit amet hendrerit odio, id molestie orci. Cras maximus lorem quis ipsum sagittis lacinia. Aliquam et nibh at urna fermentum hendrerit. Pellentesque in pharetra magna, elementum condimentum lectus.&lt;\/p&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p><span style=\"color: #0000ff;\"><strong>\u00a03. <a style=\"color: #0000ff;\" href=\"http:\/\/www.w3schools.com\/html\/html_basic.asp\" target=\"_blank\">Tag HTML Image<\/a><\/strong><\/span><\/p>\n<p>Berfungsi untuk memasukan gambar ke dalam sebuah website.<\/p>\n<pre class=\"lang:default decode:true \">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head lang=\"en\"&gt;\r\n    &lt;meta charset=\"UTF-8\"&gt;\r\n    &lt;title&gt;Tag HTML img&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n    &lt;img src=\"..\/images\/ducati.jpg\" width=\"300\" height=\"250\" alt=\"gambar_motor\"&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p><span style=\"color: #0000ff;\"><strong>\u00a04. <a style=\"color: #0000ff;\" href=\"http:\/\/www.w3schools.com\/html\/html_basic.asp\" target=\"_blank\">Tag HTML Link<\/a><\/strong><\/span><\/p>\n<p>Penulisan URL atau link pada HTML menggunakan tag &lt;a&gt; .. &lt;a&gt;<\/p>\n<pre class=\"lang:default decode:true \">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head lang=\"en\"&gt;\r\n    &lt;meta charset=\"UTF-8\"&gt;\r\n    &lt;title&gt;link&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n    &lt;a href=\"https:\/\/www.yellowweb.id\"&gt;Klik!&lt;\/a&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p><span style=\"color: #0000ff;\"><strong>\u00a05. <a style=\"color: #0000ff;\" href=\"http:\/\/www.w3schools.com\/html\/html_basic.asp\" target=\"_blank\">Tag HTML List<\/a><\/strong><\/span><\/p>\n<p>Berfungsi untuk membuat sebuah daftar\/ list. Ada 2 macam list yang berurut(<em>ordered list<\/em>) dan tidak berurutan(<em>unordered list<\/em>).<\/p>\n<pre class=\"lang:default decode:true \">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head lang=\"en\"&gt;\r\n    &lt;meta charset=\"UTF-8\"&gt;\r\n    &lt;title&gt;tag list&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n    &lt;h3&gt;List Berurutan&lt;\/h3&gt;\r\n\r\n    &lt;ol&gt;\r\n        &lt;li&gt;List 1&lt;\/li&gt;\r\n        &lt;li&gt;List 2&lt;\/li&gt;\r\n        &lt;li&gt;List 3&lt;\/li&gt;\r\n        &lt;li&gt;List 4&lt;\/li&gt;\r\n        &lt;li&gt;List 5&lt;\/li&gt;\r\n    &lt;\/ol&gt;\r\n\r\n    &lt;h3&gt;List Tidak Berurutan&lt;\/h3&gt;\r\n\r\n    &lt;ul&gt;\r\n        &lt;li&gt;List tidak berurut 1&lt;\/li&gt;\r\n        &lt;li&gt;List tidak berurut 2&lt;\/li&gt;\r\n        &lt;li&gt;List tidak berurut 3&lt;\/li&gt;\r\n        &lt;li&gt;List tidak berurut 4&lt;\/li&gt;\r\n        &lt;li&gt;List tidak berurut 5&lt;\/li&gt;\r\n    &lt;\/ul&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>Contoh diatas adalah beberapa <a href=\"http:\/\/www.w3schools.com\/html\/html5_intro.asp\" target=\"_blank\">tag-tag HTML<\/a> yang perlu kita ketahui, karena merupakan dasar dalam mempelajari HTML, so bagi teman-teman silahkan di coba pelajari ya, sampai jumpa lagi di artikel berikutnya, happy coding \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Halo teman-teman, kali ini kita akan mencoba berkenalan dengan Tag HTML, karena dasar dari mempelajari HTML adalah dengan mengenal tag-tag tersebut.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[43,11],"tags":[13,36,14,35,12],"class_list":["post-36","post","type-post","status-publish","format-standard","hentry","category-html","category-tutorial","tag-html","tag-html-basic","tag-html5","tag-tag-html","tag-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Berkenalan dengan Tag HTML - YELLOWWEB.ID<\/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:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Berkenalan dengan Tag HTML - YELLOWWEB.ID\" \/>\n<meta property=\"og:description\" content=\"Halo teman-teman, kali ini kita akan mencoba berkenalan dengan Tag HTML, karena dasar dari mempelajari HTML adalah dengan mengenal tag-tag tersebut.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/\" \/>\n<meta property=\"og:site_name\" content=\"YELLOWWEB.ID\" \/>\n<meta property=\"article:published_time\" content=\"2015-07-16T05:16:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-07-20T05:31:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag.jpg\" \/>\n<meta name=\"author\" content=\"yellowweb\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"yellowweb\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/\"},\"author\":{\"name\":\"yellowweb\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"headline\":\"Berkenalan dengan Tag HTML\",\"datePublished\":\"2015-07-16T05:16:51+00:00\",\"dateModified\":\"2015-07-20T05:31:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/\"},\"wordCount\":154,\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/yellowweb_tag.jpg\",\"keywords\":[\"html\",\"html basic\",\"html5\",\"tag html\",\"tutorial\"],\"articleSection\":[\"HTML\",\"Tutorial\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/\",\"name\":\"Berkenalan dengan Tag HTML - YELLOWWEB.ID\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/yellowweb_tag.jpg\",\"datePublished\":\"2015-07-16T05:16:51+00:00\",\"dateModified\":\"2015-07-20T05:31:01+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/#primaryimage\",\"url\":\"https:\\\/\\\/yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/yellowweb_tag.jpg\",\"contentUrl\":\"https:\\\/\\\/yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/yellowweb_tag.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/berkenalan-dengan-tag-html\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Berkenalan dengan Tag HTML\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\",\"name\":\"YELLOWWEB.ID\",\"description\":\"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\",\"name\":\"yellowweb\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"caption\":\"yellowweb\"},\"sameAs\":[\"https:\\\/\\\/www.yellowweb.id\"],\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/author\\\/yellowweb\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Berkenalan dengan Tag HTML - YELLOWWEB.ID","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.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/","og_locale":"en_GB","og_type":"article","og_title":"Berkenalan dengan Tag HTML - YELLOWWEB.ID","og_description":"Halo teman-teman, kali ini kita akan mencoba berkenalan dengan Tag HTML, karena dasar dari mempelajari HTML adalah dengan mengenal tag-tag tersebut.","og_url":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/","og_site_name":"YELLOWWEB.ID","article_published_time":"2015-07-16T05:16:51+00:00","article_modified_time":"2015-07-20T05:31:01+00:00","og_image":[{"url":"https:\/\/yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag.jpg","type":"","width":"","height":""}],"author":"yellowweb","twitter_card":"summary_large_image","twitter_misc":{"Written by":"yellowweb","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/#article","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/"},"author":{"name":"yellowweb","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"headline":"Berkenalan dengan Tag HTML","datePublished":"2015-07-16T05:16:51+00:00","dateModified":"2015-07-20T05:31:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/"},"wordCount":154,"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/#primaryimage"},"thumbnailUrl":"https:\/\/yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag.jpg","keywords":["html","html basic","html5","tag html","tutorial"],"articleSection":["HTML","Tutorial"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/","url":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/","name":"Berkenalan dengan Tag HTML - YELLOWWEB.ID","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/#primaryimage"},"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/#primaryimage"},"thumbnailUrl":"https:\/\/yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag.jpg","datePublished":"2015-07-16T05:16:51+00:00","dateModified":"2015-07-20T05:31:01+00:00","author":{"@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"breadcrumb":{"@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/#primaryimage","url":"https:\/\/yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag.jpg","contentUrl":"https:\/\/yellowweb.id\/blog\/wp-content\/uploads\/2015\/07\/yellowweb_tag.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.yellowweb.id\/blog\/berkenalan-dengan-tag-html\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.yellowweb.id\/blog\/"},{"@type":"ListItem","position":2,"name":"Berkenalan dengan Tag HTML"}]},{"@type":"WebSite","@id":"https:\/\/www.yellowweb.id\/blog\/#website","url":"https:\/\/www.yellowweb.id\/blog\/","name":"YELLOWWEB.ID","description":"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.yellowweb.id\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829","name":"yellowweb","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","caption":"yellowweb"},"sameAs":["https:\/\/www.yellowweb.id"],"url":"https:\/\/www.yellowweb.id\/blog\/author\/yellowweb\/"}]}},"_links":{"self":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/36","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/comments?post=36"}],"version-history":[{"count":3,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/36\/revisions"}],"predecessor-version":[{"id":40,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/36\/revisions\/40"}],"wp:attachment":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media?parent=36"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/categories?post=36"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/tags?post=36"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}