{"id":1383,"date":"2021-10-22T16:20:08","date_gmt":"2021-10-22T09:20:08","guid":{"rendered":"https:\/\/www.yellowweb.id\/blog\/?p=1383"},"modified":"2021-10-22T16:28:52","modified_gmt":"2021-10-22T09:28:52","slug":"ckeditor-center-image","status":"publish","type":"post","link":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/","title":{"rendered":"CKEditor Center Image"},"content":{"rendered":"\n<p>Artikel kali ini akan membahas bagaimana caranya menempatkan sebuah gambar tepat berada ditengah-tengah layout.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Pada saat menggunakan Plugin CKEditor mungkin bagi sebagian teman-teman yang baru belajar menggunakan Plugin jQuery akan sedikit mengalami kendala, pada saat ingin menempatkan sebuah gambar tepat berada ditengah layout. Artikel ini akan memberikan sedikit tips n trik bagaimana membuat objek atau gambar tepat berada ditengah pada layout yang dibuat.<\/p>\n\n\n\n<p><strong>Kuncinya adalah dengan memberikan style css secara manual atau custom buatan sendiri, pada tag html img.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor-ditengah.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor-ditengah-1024x576.jpg\" alt=\"\" class=\"wp-image-1393\" srcset=\"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor-ditengah-1024x576.jpg 1024w, https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor-ditengah-300x169.jpg 300w, https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor-ditengah-768x432.jpg 768w, https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor-ditengah.jpg 1366w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p>File index.php<\/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;meta charset=\"utf-8\"&gt;\n        &lt;title&gt;Home | CKEditor&lt;\/title&gt;\n        &lt;script src=\"https:\/\/cdn.ckeditor.com\/4.16.2\/standard\/ckeditor.js\"&gt;&lt;\/script&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    \n    &lt;h4&gt;Input Berita&lt;\/h4&gt;\n\n    &lt;form action=\"insert-berita.php\" method=\"post\"&gt;\n        &lt;label&gt;Judul&lt;\/label&gt;\n        &lt;input type=\"text\" name=\"jd\"&gt;\n        &lt;br&gt;\n        &lt;label&gt;Deskripsi&lt;\/label&gt;\n        &lt;textarea cols=\"30\" rows=\"5\" name=\"isi\"&gt;&lt;\/textarea&gt;\n        &lt;script&gt;\n                CKEDITOR.replace( 'isi' );\n        &lt;\/script&gt;\n        &lt;br&gt;\n        &lt;input type=\"submit\" name=\"save\" value=\"SIMPAN\"&gt;\n        &lt;input type=\"reset\" name=\"cancel\" value=\"BATAL\"&gt;    \n    &lt;\/form&gt;\n\n    &lt;br&gt;\n\n    &lt;a href=\"tampil-data.php\"&gt;Lihat Data&lt;\/a&gt;\n\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p>File insert-berita.php<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\tinclude \"koneksi.php\";\n\n\t$jd = $_POST&#091;\"jd\"];\n\t$isi = mysqli_real_escape_string($con, $_POST&#091;\"isi\"]);\n\n\t$sql = \"INSERT INTO tbl_berita(judul, isi_berita) VALUES('$jd', '$isi')\";\n\t$query = mysqli_query($con, $sql) or die (mysqli_error($con));\n\n\tif($query){\n\t\theader(\"location: tampil-data.php\");\n\t}\n<\/code><\/pre>\n\n\n\n<p>File tampil-data.php<\/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;meta charset=\"utf-8\"&gt;\n\t&lt;title&gt;Tampil Data&lt;\/title&gt;\n\t&lt;style type=\"text\/css\"&gt;\n\t\t*{\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t}\n\n\t\tbody{\n\t\t\tfont-family: 'Arial', serif;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 20px;\n\t\t}\n\n\t\t#wrapper{\n\t\t\twidth: 600px;\n\t\t\tmargin: auto;\n\t\t}\n\n\t\t#content{\n\t\t\tbackground: grey;\n\t\t\theight: auto;\n\t\t\tpadding: 20px;\n\t\t}\n\n\t\t#content img{\n\t\t\tmargin: auto;\n\t\t\twidth: 500px;\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t#content p{\n\t\t\tmargin-top: 20px;\n\t\t}\n\n\t\t#content h2{\n\t\t\ttext-align: center;\n\t\t\ttext-transform: uppercase;\n\t\t}\n\t&lt;\/style&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n\n\t&lt;div id=\"wrapper\"&gt;\n\t\t&lt;div id=\"content\"&gt;\n\n\n\t\t\t&lt;?php\n\t\t\t\tinclude \"koneksi.php\";\n\t\t\t\t$sql = \"SELECT * FROM tbl_berita ORDER BY id_berita DESC LIMIT 1\";\n\t\t\t\t$query = mysqli_query($con, $sql) or die (mysqli_error($con));\n\t\t\t\twhile($data = mysqli_fetch_array($query)){?&gt;\n\n\t\t\t\t\t&lt;h2&gt;&lt;?php echo $data&#091;\"judul\"];?&gt;&lt;\/h2&gt;\t\n\t\t\t\t\t&lt;p&gt;&lt;?php echo $data&#091;\"isi_berita\"];?&gt;&lt;\/p&gt;\n\n\t\t\t\t&lt;?php }\n\t\t\t?&gt;\n\n\t\t\t&lt;a href=\"\/portalku\"&gt;Kembali&lt;\/a&gt;\n\t\t\t&lt;br&gt;\n\t\t\t&lt;br&gt;\n\t\t\t&lt;em&gt;\n\t\t\t\tIni adalah contoh sederhana pengaturan gambar berada tepat ditengah pada saat menggunakan Plugin CKEditor\n\t\t\t\tGambar diambil dari situs: https:\/\/www.wsupercars.com\/\n\t\t\t\t&lt;br&gt;\n\t\t\t\tdalam artian situs tersebut memperbolehkan gambar untuk disematkan pada website dengan domain yang berbeda.\n\t\t\t&lt;\/em&gt;\n\t\t&lt;\/div&gt;&lt;!-- end of content--&gt;\n\t&lt;\/div&gt;\n\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p>File koneksi.php<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\t$server = \"localhost\";\n\t$user = \"root\";\n\t$pass = \"\";\n\t$dbase = \"db_berita\";\n\n\t$con = mysqli_connect($server, $user, $pass, $dbase);\n\n\tif(!$con){\n\t\tdie(mysqli_error($con));\n\t}<\/code><\/pre>\n\n\n\n<p>Untuk demo hasil akhir akan terlihat pada link berikut:<\/p>\n\n\n\n<p><a href=\"https:\/\/www.yellowweb.id\/demo\/ckeditorku\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.yellowweb.id\/demo\/ckeditorku\/<\/a><\/p>\n\n\n\n<p>Untuk file mentahnya kalian dapat unduh disini:<\/p>\n\n\n<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\/ckeditor-center-image\/'>CKEditor Center Image<\/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> 3.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\/ckeditor-center-image\/?wpdmdl=1390&refresh=69e21e73e82bb1776426611\">Download<\/a>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Artikel kali ini akan membahas bagaimana caranya menempatkan sebuah gambar tepat berada ditengah-tengah layout.<\/p>\n","protected":false},"author":1,"featured_media":1388,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[116],"tags":[563,8,18,88],"class_list":["post-1383","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-jquery","tag-ckeditor","tag-css","tag-jquery","tag-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CKEditor Center Image - 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\/ckeditor-center-image\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CKEditor Center Image - YELLOWWEB.ID\" \/>\n<meta property=\"og:description\" content=\"Artikel kali ini akan membahas bagaimana caranya menempatkan sebuah gambar tepat berada ditengah-tengah layout.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/\" \/>\n<meta property=\"og:site_name\" content=\"YELLOWWEB.ID\" \/>\n<meta property=\"article:published_time\" content=\"2021-10-22T09:20:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-22T09:28:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor.jpg?fit=1200%2C628&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\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=\"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\\\/ckeditor-center-image\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/\"},\"author\":{\"name\":\"yellowweb\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"headline\":\"CKEditor Center Image\",\"datePublished\":\"2021-10-22T09:20:08+00:00\",\"dateModified\":\"2021-10-22T09:28:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/\"},\"wordCount\":121,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/ckeditor.jpg\",\"keywords\":[\"ckeditor\",\"css\",\"jquery\",\"php\"],\"articleSection\":[\"jQuery\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/\",\"name\":\"CKEditor Center Image - YELLOWWEB.ID\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/ckeditor.jpg\",\"datePublished\":\"2021-10-22T09:20:08+00:00\",\"dateModified\":\"2021-10-22T09:28:52+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/ckeditor.jpg\",\"contentUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/ckeditor.jpg\",\"width\":1200,\"height\":628,\"caption\":\"ckeditor.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/ckeditor-center-image\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CKEditor Center Image\"}]},{\"@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":"CKEditor Center Image - 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\/ckeditor-center-image\/","og_locale":"en_GB","og_type":"article","og_title":"CKEditor Center Image - YELLOWWEB.ID","og_description":"Artikel kali ini akan membahas bagaimana caranya menempatkan sebuah gambar tepat berada ditengah-tengah layout.","og_url":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/","og_site_name":"YELLOWWEB.ID","article_published_time":"2021-10-22T09:20:08+00:00","article_modified_time":"2021-10-22T09:28:52+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor.jpg?fit=1200%2C628&ssl=1","type":"image\/jpeg"}],"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\/ckeditor-center-image\/#article","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/"},"author":{"name":"yellowweb","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"headline":"CKEditor Center Image","datePublished":"2021-10-22T09:20:08+00:00","dateModified":"2021-10-22T09:28:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/"},"wordCount":121,"commentCount":0,"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor.jpg","keywords":["ckeditor","css","jquery","php"],"articleSection":["jQuery"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/","url":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/","name":"CKEditor Center Image - YELLOWWEB.ID","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/#primaryimage"},"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor.jpg","datePublished":"2021-10-22T09:20:08+00:00","dateModified":"2021-10-22T09:28:52+00:00","author":{"@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"breadcrumb":{"@id":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/#primaryimage","url":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor.jpg","contentUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2021\/10\/ckeditor.jpg","width":1200,"height":628,"caption":"ckeditor.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.yellowweb.id\/blog\/ckeditor-center-image\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.yellowweb.id\/blog\/"},{"@type":"ListItem","position":2,"name":"CKEditor Center Image"}]},{"@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\/1383","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=1383"}],"version-history":[{"count":8,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/1383\/revisions"}],"predecessor-version":[{"id":1453,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/1383\/revisions\/1453"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media\/1388"}],"wp:attachment":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media?parent=1383"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/categories?post=1383"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/tags?post=1383"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}