{"id":1321,"date":"2021-01-09T16:06:07","date_gmt":"2021-01-09T09:06:07","guid":{"rendered":"https:\/\/www.yellowweb.id\/blog\/?p=1321"},"modified":"2021-01-10T08:42:13","modified_gmt":"2021-01-10T01:42:13","slug":"teknik-reveal-effect-css","status":"publish","type":"post","link":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/","title":{"rendered":"Teknik Reveal Effect CSS"},"content":{"rendered":"\n<p>Artikel kali ini akan membahas sebuah efek css yaitu Efek Reveal dengan menggunakan CSS, dengan memadukan properti position dan z-index.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Teknik yang nanti akan diperlihatkan berikut, adalah perpaduan antara css properti <a href=\"https:\/\/www.w3schools.com\/css\/css_positioning.asp\" target=\"_blank\" rel=\"noreferrer noopener\">position<\/a> dan <a href=\"https:\/\/www.w3schools.com\/cssref\/pr_pos_z-index.asp\" target=\"_blank\" rel=\"noreferrer noopener\">z-index<\/a>, untuk memahaminya teman-teman harus tahu konsep dan cara kerja dari kedua properti diatas.<\/p>\n\n\n\n<p>langsung kita mulai saja,&#8230;<\/p>\n\n\n\n<p>file index.html<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n&lt;head&gt;\n\t&lt;title&gt;Sticky Footer - Reveal Effect&lt;\/title&gt;\n\t&lt;link rel=\"stylesheet\" type=\"text\/css\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/5.15.1\/css\/all.min.css\"&gt;\n\t\n&lt;\/head&gt;\n&lt;body&gt;\n\n\t&lt;div id=\"wrapper\"&gt;\n\t\t&lt;div class=\"w-title\"&gt;\n\t\t\t&lt;h2&gt;scroll me&lt;\/h2&gt;\n\t\t&lt;\/div&gt;\n\t\t&lt;div class=\"w-pointer\"&gt;\n\t\t\t&lt;i class=\"fas fa-arrow-down\"&gt;&lt;\/i&gt;\n\t\t&lt;\/div&gt;\n\t&lt;\/div&gt;\n\t&lt;div id=\"footer\"&gt;\n\t\t&lt;h3&gt;YELLOWWEB.ID&lt;\/h3&gt;\n\t&lt;\/div&gt;\n\n\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p>untuk style css nya bisa digabungkan dengan teknik embededd atau eksternal, silahkan disesuaikan.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>@import url('https:\/\/fonts.googleapis.com\/css2?family=Big+Shoulders+Stencil+Text&amp;display=swap');\n\t\t@import url('https:\/\/fonts.googleapis.com\/css2?family=Poppins:ital,wght@1,900&amp;display=swap');\n\t\t\n\t\t*{\n\t\t\tpadding: 0;\n\t\t\tmargin: 0;\n\t\t}\n\n\t\t#wrapper{\n\t\t\tbackground-image: url(\"back.jpg\");\n\t\t\tbackground-position: top;\n\t\t\tbackground-attachment: fixed;\n\t\t\tbackground-repeat: no-repeat;\n\t\t\tbackground-size: cover;\n\t\t\theight: 700px;\n\t\t\tz-index: 1;\n\t\t\tposition: relative;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tmargin-bottom: 100px;\n\t\t}\n\n\t\t#footer{\n\t\t\tbackground-color: #000000;\n\t\t\theight: 100px;\n\t\t\twidth: 100%;\n\t\t\tposition: fixed;\n\t\t\tleft: 0;\n\t\t\tbottom: 0;\n\t\t\tz-index: 0;\n\t\t\tdisplay: flex;\n\t\t\tjustify-content: center;\n\t\t\tfont-size: 30px;\n\t\t}\n\n\t\t#footer h3{\n\t\t\t    font-family: 'Poppins', sans-serif;\n\t\t\t    letter-spacing: 5px;\n\t\t\tcolor: #ffc602;\n\t\t\tpadding-top: 20px;\n\t\t\ttext-shadow: 0 0 5px #ffffff,\n\t\t\t\t\t\t 0 0 10px #ffffff;\n\t\t}\n\n\t\t.w-title{\n\t\t\t\/*background-color: red;*\/\n\t\t\tdisplay: flex;\n\t\t\tjustify-content: center;\n\t\t\talign-items: center;\n\t\t\theight: 300px;\n\t\t\tpadding-top: 200px;\n\t\t}\n\n\t\th2{\n\t\t\tfont-size: 200px;\n\t\t\tcolor: #ffc602;\n\t\t\tfont-family: 'Big Shoulders Stencil Text', cursive;\n\t\t\tbox-shadow: 0 0 20px #ffc602, inset 0 0 20px #ffc602, 0 0 20px #ffc602;\n\t\t\tpadding: 0 30px;\n\t\t}\n\n\t\t.w-pointer{\n\t\t\t\/*background-color: blue;*\/\n\t\t\tfont-size: 100px;\n\t\t\talign-content: center;\n\t\t\tjustify-content: center;\n\t\t\tdisplay: flex;\n\t\t\tcolor: #ffffff;\n\t\t}\n<\/code><\/pre>\n\n\n\n<p>Untuk videonya terbagi ke dalam 3 bagian (part)<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"Part #1 Teknik Reveal Effect CSS\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/8mDSwDRfJGw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><div class='w3eden'><!-- WPDM Link Template: Default Template -->\n\n<div class=\"link-template-default card mb-2\">\n    <div class=\"card-body\">\n        <div class=\"media\">\n            <div class=\"mr-3 img-48\"><img decoding=\"async\" class=\"wpdm_icon\" alt=\"Icon\" src=\"https:\/\/www.yellowweb.id\/blog\/wp-content\/plugins\/download-manager\/assets\/file-type-icons\/zip.svg\" \/><\/div>\n            <div class=\"media-body\">\n                <h3 class=\"package-title\"><a href='https:\/\/www.yellowweb.id\/blog\/download\/teknik-reveal-effect-css\/'>Teknik Reveal Effect CSS<\/a><\/h3>\n                <div class=\"text-muted text-small\"><i class=\"fas fa-copy\"><\/i> 1 file(s) <i class=\"fas fa-hdd ml-3\"><\/i> 143.36 KB<\/div>\n            <\/div>\n            <div class=\"ml-3\">\n                <a class='wpdm-download-link download-on-click btn btn-primary ' rel='nofollow' href='#' data-downloadurl=\"https:\/\/www.yellowweb.id\/blog\/download\/teknik-reveal-effect-css\/?wpdmdl=1326&refresh=69e051d265c901776308690\">Download<\/a>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons aligncenter is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https:\/\/www.yellowweb.id\/demo\/sticky-footer\/\" target=\"_blank\" rel=\"noreferrer noopener\">DEMO<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<p>Sumber:<\/p>\n\n\n\n<p><a href=\"https:\/\/www.w3schools.com\/cssref\/pr_pos_z-index.asp\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.w3schools.com\/cssref\/pr_pos_z-index.asp<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/www.w3schools.com\/css\/css_positioning.asp\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.w3schools.com\/css\/css_positioning.asp<\/a><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Artikel kali ini akan membahas sebuah efek css yaitu Efek Reveal dengan menggunakan CSS, dengan memadukan properti position dan z-index.<\/p>\n","protected":false},"author":1,"featured_media":1322,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[37],"tags":[8,553,31,4],"class_list":["post-1321","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-css","tag-css","tag-reveal-effect","tag-web-desain","tag-web-design"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Teknik Reveal Effect CSS - 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\/teknik-reveal-effect-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Teknik Reveal Effect CSS - YELLOWWEB.ID\" \/>\n<meta property=\"og:description\" content=\"Artikel kali ini akan membahas sebuah efek css yaitu Efek Reveal dengan menggunakan CSS, dengan memadukan properti position dan z-index.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/\" \/>\n<meta property=\"og:site_name\" content=\"YELLOWWEB.ID\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-09T09:06:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-10T01:42:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/01\/rev.jpg?fit=600%2C290&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"290\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/\"},\"author\":{\"name\":\"yellowweb\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"headline\":\"Teknik Reveal Effect CSS\",\"datePublished\":\"2021-01-09T09:06:07+00:00\",\"dateModified\":\"2021-01-10T01:42:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/\"},\"wordCount\":111,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/rev.jpg\",\"keywords\":[\"css\",\"reveal-effect\",\"web desain\",\"web design\"],\"articleSection\":[\"CSS\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/\",\"name\":\"Teknik Reveal Effect CSS - YELLOWWEB.ID\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/rev.jpg\",\"datePublished\":\"2021-01-09T09:06:07+00:00\",\"dateModified\":\"2021-01-10T01:42:13+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/rev.jpg\",\"contentUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/rev.jpg\",\"width\":600,\"height\":290,\"caption\":\"teknik-reveal-css\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/teknik-reveal-effect-css\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Teknik Reveal Effect CSS\"}]},{\"@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":"Teknik Reveal Effect CSS - 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\/teknik-reveal-effect-css\/","og_locale":"en_GB","og_type":"article","og_title":"Teknik Reveal Effect CSS - YELLOWWEB.ID","og_description":"Artikel kali ini akan membahas sebuah efek css yaitu Efek Reveal dengan menggunakan CSS, dengan memadukan properti position dan z-index.","og_url":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/","og_site_name":"YELLOWWEB.ID","article_published_time":"2021-01-09T09:06:07+00:00","article_modified_time":"2021-01-10T01:42:13+00:00","og_image":[{"width":600,"height":290,"url":"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/01\/rev.jpg?fit=600%2C290&ssl=1","type":"image\/jpeg"}],"author":"yellowweb","twitter_card":"summary_large_image","twitter_misc":{"Written by":"yellowweb","Estimated reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/#article","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/"},"author":{"name":"yellowweb","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"headline":"Teknik Reveal Effect CSS","datePublished":"2021-01-09T09:06:07+00:00","dateModified":"2021-01-10T01:42:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/"},"wordCount":111,"commentCount":0,"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/01\/rev.jpg","keywords":["css","reveal-effect","web desain","web design"],"articleSection":["CSS"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/","url":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/","name":"Teknik Reveal Effect CSS - YELLOWWEB.ID","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/#primaryimage"},"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/01\/rev.jpg","datePublished":"2021-01-09T09:06:07+00:00","dateModified":"2021-01-10T01:42:13+00:00","author":{"@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"breadcrumb":{"@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/#primaryimage","url":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/01\/rev.jpg","contentUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/01\/rev.jpg","width":600,"height":290,"caption":"teknik-reveal-css"},{"@type":"BreadcrumbList","@id":"https:\/\/www.yellowweb.id\/blog\/teknik-reveal-effect-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.yellowweb.id\/blog\/"},{"@type":"ListItem","position":2,"name":"Teknik Reveal Effect CSS"}]},{"@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\/1321","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=1321"}],"version-history":[{"count":11,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/1321\/revisions"}],"predecessor-version":[{"id":1334,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/1321\/revisions\/1334"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media\/1322"}],"wp:attachment":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media?parent=1321"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/categories?post=1321"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/tags?post=1321"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}