<style>
body {font-family: Arial, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 700px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
</style>
<script>
jQuery('body').prepend(
'<div id="myModal" class="modal">'
	+'<div class="modal-content">'
		+'<label style="font-size:1.5em !important;">Please fill in your Email and Phone no.</label><span class="close">&times;</span><br><br>'
		+'<form id="form_vote" name="form_vote"><input type="hidden" name="votepostid" id="votepostid" value="">'
		+'<input type="hidden" name="votetype" id="votetype" value="">'
		+'<label>Email: </label>'
		+'<input type="text" id="email" name="email">'
		+'<label>Phone No.: </label>'
		+'<input type="number" id="phone" name="phone">'
		+'<input type="button" name="it_epoll_survey-vote-button" id="it_epoll_survey-vote-button" value="Submit" onclick="submitvote();"></form>'
	+'</div>'
+'</div>');

var modal = document.getElementById("myModal");
var btn = document.getElementById("myBtn");
var span = document.getElementsByClassName("close")[0];

span.onclick = function() {
  modal.style.display = "none";
}

window.onclick = function(event) {
  if (event.target == modal) {
    modal.style.display = "none";
  }
}


window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_on').html('ON - Muhammad Ibrahim bin Khairulsani, Nor Nabila binti Mohammad Fairuz, Engku Erfan Ekhwanuddin, Raja Amirul Iman Raja Dzafran');	
})


function voteon(a){
	modal.style.display = "block";
	jQuery('#votetype').val('on');
}

function submitvote(){
	votetype = jQuery('#votetype').val();
	if(votetype == 'on'){
		submitvoteon();
	}else if(votetype == 'os'){
		submitvoteos();
	}
}

function submitvoteon(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownon').show();
		jQuery('.voteon').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownon').hide();
			jQuery('.voteon').show();
			
		  } else {
			jQuery('#countdownon').html(timeleft + " seconds remaining");
		   // document.getElementById("countdownon").innerHTML = timeleft + " seconds remaining";
		  }
		  timeleft -= 1;
		}, 1000);
			
			nama = jQuery('.nama').html();
			var form = jQuery('#form_vote')[0];
			var formData = new FormData(form);
			formData.append('action', 'rwvoting_submiton');
			formData.append('nama', 'Muhammad Ibrahim bin Khairulsani, Nor Nabila binti Mohammad Fairuz, Engku Erfan Ekhwanuddin, Raja Amirul Iman Raja Dzafran');
			
				jQuery.ajax({
					type: "POST",
					url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
					data: formData,
					async: false,
					cache: false,
					contentType: false,
					enctype: 'multipart/form-data',
					processData: false,
					success: function (data) {
						var json = JSON.parse(data);
						percentage = json.percentage;
						msg_total = json.msg_total;
						
						jQuery('.percenton').html(percentage+'%');
						jQuery('.onwidth').css('width',percentage+'%');
						
						if(msg_total == 'Full'){
							alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
						}
					},
					error: function (data) {
						//console.log("fail: " + data);
					}
				});
	}
}


jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percenton&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percenton').html(result+'%');
		jQuery('.onwidth').css('width',result+'%');
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script><script>
window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_os').html('OS - Muhammad Ibrahim bin Khairulsani, Nor Nabila binti Mohammad Fairuz, Engku Erfan Ekhwanuddin, Raja Amirul Iman Raja Dzafran');
})

function voteos(a){
	modal.style.display = "block";
		jQuery('#votetype').val('os');
}

function submitvoteos(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownos').show();
		jQuery('.voteos').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownos').hide();
			jQuery('.voteos').show();
			
		  } else {
			jQuery('#countdownos').html(timeleft + " seconds remaining");
		  }
		  timeleft -= 1;
		}, 1000);
			
		nama = jQuery('.nama').html();
		var form = jQuery('#form_vote')[0];
		var formData = new FormData(form);
		formData.append('action', 'rwvoting_submitos');
		formData.append('nama', 'Muhammad Ibrahim bin Khairulsani, Nor Nabila binti Mohammad Fairuz, Engku Erfan Ekhwanuddin, Raja Amirul Iman Raja Dzafran');

		jQuery.ajax({
			type: "POST",
			url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
			data: formData,
			async: false,
			cache: false,
			contentType: false,
			enctype: 'multipart/form-data',
			processData: false,
			success: function (data) {
				var json = JSON.parse(data);
				percentage = json.percentage;
				msg_total = json.msg_total;
				
				jQuery('.percentos').html(percentage+'%');
				jQuery('.oswidth').css('width',percentage+'%');
				
				if(msg_total == 'Full'){
					alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
				}
			},
			error: function (data) {
				//console.log("fail: " + data);
			}
		});
	}
}

jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percentos&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percentos').html(result+'%');
		jQuery('.oswidth').css('width',result+'%');
		
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script>{"id":6700,"date":"2023-09-09T15:22:59","date_gmt":"2023-09-09T07:22:59","guid":{"rendered":"https:\/\/www.artgallery.gov.my\/bms\/?p=6700"},"modified":"2025-06-20T14:35:39","modified_gmt":"2025-06-20T06:35:39","slug":"muhammad-ibrahim-bin-khairulsani-nor-nabila-binti-mohammad-fairuz-engku-erfan-ekhwanuddin-raja-amirul-iman-raja-dzafran","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=6700","title":{"rendered":"Muhammad Ibrahim bin Khairulsani, Nor Nabila binti Mohammad Fairuz, Engku Erfan Ekhwanuddin, Raja Amirul Iman Raja Dzafran"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-zzub18-4dd006191fe2364dd25892b8aab3e4c5 main_color avia-section-default avia-no-border-styling  avia-builder-el-0  el_before_av_section  avia-builder-el-first  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><main  role=\"main\" itemprop=\"mainContentOfPage\"  class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6700'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-yayazw-163e192f398cc7f4dde3fbf85e5ff0f8\">\n#top .av-special-heading.av-yayazw-163e192f398cc7f4dde3fbf85e5ff0f8{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-yayazw-163e192f398cc7f4dde3fbf85e5ff0f8 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-yayazw-163e192f398cc7f4dde3fbf85e5ff0f8 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-yayazw-163e192f398cc7f4dde3fbf85e5ff0f8 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-yayazw-163e192f398cc7f4dde3fbf85e5ff0f8 av-special-heading-h2 custom-color-heading  avia-builder-el-1  el_before_av_one_third  avia-builder-el-first '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >PROFIL<\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-vocb98-38b3a684855fa3597ab36941feb4a3e2\">\n.flex_column.av-vocb98-38b3a684855fa3597ab36941feb4a3e2{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-vocb98-38b3a684855fa3597ab36941feb4a3e2 av_one_third  avia-builder-el-2  el_after_av_heading  el_before_av_two_third  first flex_column_div av-animated-generic pop-up av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-uvn7wc-150042c5013c2507d1f8ba4f189da94e\">\n#top .hr.hr-invisible.av-uvn7wc-150042c5013c2507d1f8ba4f189da94e{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-uvn7wc-150042c5013c2507d1f8ba4f189da94e hr-invisible  avia-builder-el-3  el_before_av_iconlist  avia-builder-el-first '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div><br \/>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lmpzr7e0-5a89200111bba6909570a047b2e44e46\">\n#top .avia-icon-list-container.av-lmpzr7e0-5a89200111bba6909570a047b2e44e46 .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#edae44;\n}\n#top .avia-icon-list-container.av-lmpzr7e0-5a89200111bba6909570a047b2e44e46 .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-lmpzr7e0-5a89200111bba6909570a047b2e44e46  avia-builder-el-4  el_after_av_hr  avia-builder-el-last '><ul class='avia-icon-list avia_animate_when_almost_visible avia-icon-list-left av-iconlist-big av-lmpzr7e0-5a89200111bba6909570a047b2e44e46 avia-iconlist-animate'>\n<li><div class='iconlist_icon av-lmpzq48p-b53e1e6ccafe61ed5db435402f65bb08 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue80a' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: NAMA: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >NAMA: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><ul>\n<li>Muhammad Ibrahim bin Khairulsani<\/li>\n<li>Nor Nabila binti Mohammad Fairuz<\/li>\n<li>Engku Erfan Ekhwanuddin<\/li>\n<li>Raja Amirul Iman Raja Dzafran<\/li>\n<\/ul>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-lmpzqpme-b0a50cab020c4c3036b39422c3f2b1eb avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue8b1' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: LOKASI: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >LOKASI: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">Aplikasi atas talian (Online)<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-lmpzr481-11b78549896f1719637a7b517a647f36 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue840' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: BIODATA PESERTA:\"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >BIODATA PESERTA:<\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><ul>\n<li><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/CV-13.pdf\" target=\"_blank\" rel=\"noopener\">Muhammad Ibrahim bin Khairulsani<\/a><\/li>\n<li><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/CV-13.pdf\" target=\"_blank\" rel=\"noopener\">Nor Nabila binti Mohammad Fairuz<\/a><\/li>\n<li><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/CV-13.pdf\" target=\"_blank\" rel=\"noopener\">Engku Erfan Ekhwanuddin<\/a><\/li>\n<li><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/CV-13.pdf\" target=\"_blank\" rel=\"noopener\">Raja Amirul Iman Raja Dzafran<\/a><\/li>\n<\/ul>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<\/ul><\/div><\/p><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-thz0wc-7740aacfed367689f09d9065a07c5dcb\">\n.flex_column.av-thz0wc-7740aacfed367689f09d9065a07c5dcb{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-thz0wc-7740aacfed367689f09d9065a07c5dcb av_two_third  avia-builder-el-5  el_after_av_one_third  avia-builder-el-last  flex_column_div av-zero-column-padding  '     ><p><br \/>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lmq07avv-77d942848957c2183e50914eb0b1432e\">\n.avia-image-container.av-lmq07avv-77d942848957c2183e50914eb0b1432e img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-lmq07avv-77d942848957c2183e50914eb0b1432e .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-lmq07avv-77d942848957c2183e50914eb0b1432e av-styling- avia-align-center  avia-builder-el-7  el_after_av_image  avia-builder-el-last '   itemprop=\"image\" itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/ImageObject\" ><div class=\"avia-image-container-inner\"><div class=\"avia-image-overlay-wrap\"><img decoding=\"async\" fetchpriority=\"high\" class='wp-image-8456 avia-img-lazy-loading-not-8456 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/foto-2-4-1030x457.png\" alt='' title='foto 2'  height=\"457\" width=\"1030\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/foto-2-4-1030x457.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/foto-2-4-300x133.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/foto-2-4-768x341.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/foto-2-4-705x313.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/foto-2-4.png 1270w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/div><\/div><\/div><\/p><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-p2lpos-b67e11881eeee5206917cfacefde26ad main_color avia-section-default avia-no-border-styling  avia-builder-el-8  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6700'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-nrfbpo-839be66a0daf4da7b60b9199f947e816\">\n.flex_column.av-nrfbpo-839be66a0daf4da7b60b9199f947e816{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-nrfbpo-839be66a0daf4da7b60b9199f947e816 av_one_full  avia-builder-el-9  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-n0adyk-e32ec20b762b65fdc5b59f9db8cf4b63\">\n#top .av-special-heading.av-n0adyk-e32ec20b762b65fdc5b59f9db8cf4b63{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-n0adyk-e32ec20b762b65fdc5b59f9db8cf4b63 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-n0adyk-e32ec20b762b65fdc5b59f9db8cf4b63 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-n0adyk-e32ec20b762b65fdc5b59f9db8cf4b63 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-n0adyk-e32ec20b762b65fdc5b59f9db8cf4b63 av-special-heading-h2 custom-color-heading  avia-builder-el-10  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KETERANGAN <span style=\"color: #ffffff;\">KARYA<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lewmoc-a0072d5a99f5ed2d0136dd671934aea5\">\n#top .hr.hr-invisible.av-lewmoc-a0072d5a99f5ed2d0136dd671934aea5{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-lewmoc-a0072d5a99f5ed2d0136dd671934aea5 hr-invisible  avia-builder-el-11  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-lmq080z5-fe42d519a97c07bc086f4a5ade827d89 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\"><u>Aku dan Guru<\/u><\/p>\n<p style=\"text-align: justify;\">Matlamat Pembangunan Mampan atau Sustainable Development Goals (SDG) mempunyai 17 pecahan di dalam kandungannya. Matlamat yang diangkat bagi penghasilan karya ini adalah pada matlamat yang ke-empat, iaitu, pendidikan yang berkualiti. Pendidikan merupakan sebuah perkara yang penting, oleh kerana itu, kualiti pendidikan yang diberi atau disediakan perlulah mampan dalam menghasilkan generasi yang juga berkualiti.<\/p>\n<p style=\"text-align: justify;\">Oleh kerana wujudnya kepentingan dan kesedaran terhadap adab di dalam menuntut ilmu, maka penelitian masalah yang dipilih bagi membincangkan perkara ini adalah, di dalam bentuk karya seni kreatif. Hal ini kerana ianya bukan sahaja praktikal bagi mengetengahkan adab menuntut ilmu, malahan juga menarik dan menghiburkan bagi menyampaikan sesebuah nilai murni, terutama untuk golongan remaja pada masa kini.<\/p>\n<p style=\"text-align: justify;\">Menghasilkan karya kreatif berbentuk digital bagi mempamerkan adab menuntut ilmu dalam kalangan remaja, seperti yang disarankan di dalam Kitab Ihya Ulumuddin oleh Imam Al- Ghazali. Konteks integrasi di antara ilmu naqli dan ilmu aqli ini disampaikan di dalam tulisan jawi dengan menggunakan platform media sosial yang sedia ada, bagi mewujudkan nilai interaktif di antara pengkarya dan penonton.<\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-jctvl8-fb4c464ad73f3ef64c0a73cdfa86ca07 main_color avia-section-default avia-no-border-styling  avia-builder-el-13  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6700'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-hg5b8s-ae1f6c4b0b233b5ae0a36c062ecc77d2\">\n.flex_column.av-hg5b8s-ae1f6c4b0b233b5ae0a36c062ecc77d2{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-hg5b8s-ae1f6c4b0b233b5ae0a36c062ecc77d2 av_one_full  avia-builder-el-14  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-fd06zg-975759a37aa6227bc24a00a935abbe94\">\n#top .av-special-heading.av-fd06zg-975759a37aa6227bc24a00a935abbe94{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-fd06zg-975759a37aa6227bc24a00a935abbe94 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-fd06zg-975759a37aa6227bc24a00a935abbe94 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-fd06zg-975759a37aa6227bc24a00a935abbe94 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-fd06zg-975759a37aa6227bc24a00a935abbe94 av-special-heading-h2 custom-color-heading  avia-builder-el-15  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KARYA <span style=\"color: #ffffff;\">CADANGAN<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-dwah30-3d5c2bd34690ab00dba19f3bb5876f86\">\n#top .hr.hr-invisible.av-dwah30-3d5c2bd34690ab00dba19f3bb5876f86{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-dwah30-3d5c2bd34690ab00dba19f3bb5876f86 hr-invisible  avia-builder-el-16  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-lmq0eqql-9ea939c690ea4f0ca625e7a6f5a327e3 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><iframe style=\"width: 100%; height: 500px;\" src=\"https:\/\/docs.google.com\/gview?url=https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BMS23-Proposal-6.pdf&amp;embedded=true\" frameborder=\"0\"><\/iframe><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BMS23-Proposal-6.pdf\">BMS23 Proposal<\/a><br \/>\n<img decoding=\"async\" class=\"alignnone size-full wp-image-6702\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-9.png\" alt=\"\" width=\"671\" height=\"385\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-9.png 671w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-9-300x172.png 300w\" sizes=\"(max-width: 671px) 100vw, 671px\" \/><br \/>\n<img decoding=\"async\" class=\"alignnone size-full wp-image-6703\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-8.png\" alt=\"\" width=\"538\" height=\"337\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-8.png 538w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-8-300x188.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" \/><br \/>\n<img decoding=\"async\" class=\"alignnone size-large wp-image-6704\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-7-1030x550.png\" alt=\"\" width=\"1030\" height=\"550\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-7-1030x550.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-7-300x160.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-7-768x410.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-7-1536x820.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-7-1500x801.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-7-705x377.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-7.png 1743w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><br \/>\n<img decoding=\"async\" class=\"alignnone size-large wp-image-6705\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-3-1030x688.png\" alt=\"\" width=\"1030\" height=\"688\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-3-1030x688.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-3-300x201.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-3-768x513.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-3-1536x1027.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-3-1500x1003.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-3-705x471.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-3.png 1716w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4'  class='avia-section av-seghh8-efb677ef3c4b3fb96beefa6b3102830d main_color avia-section-default avia-no-border-styling  avia-builder-el-18  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6700'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-rqaxgs-b25b61cc45a1b0cd72158627bc97e321\">\n.flex_column.av-rqaxgs-b25b61cc45a1b0cd72158627bc97e321{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-rqaxgs-b25b61cc45a1b0cd72158627bc97e321 av_one_full  avia-builder-el-19  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-9cfng-2789b454fa9b71330a4819e6b791e500\">\n#top .av-special-heading.av-9cfng-2789b454fa9b71330a4819e6b791e500{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-9cfng-2789b454fa9b71330a4819e6b791e500 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-9cfng-2789b454fa9b71330a4819e6b791e500 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-9cfng-2789b454fa9b71330a4819e6b791e500 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-9cfng-2789b454fa9b71330a4819e6b791e500 av-special-heading-h2 custom-color-heading  avia-builder-el-20  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KARYA <span style=\"color: #ffffff;\">AKHIR<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-o4g2po-8f9f7e09945c329a080cabfb497f0aa1\">\n#top .hr.hr-invisible.av-o4g2po-8f9f7e09945c329a080cabfb497f0aa1{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-o4g2po-8f9f7e09945c329a080cabfb497f0aa1 hr-invisible  avia-builder-el-21  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-ltp1cc-89b847e4dfeca74e30271fa6c2e0c24e '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone size-full wp-image-8242\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195650.jpg\" alt=\"\" width=\"770\" height=\"759\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195650.jpg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195650-300x296.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195650-80x80.jpg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195650-768x757.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195650-36x36.jpg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195650-705x695.jpg 705w\" sizes=\"(max-width: 770px) 100vw, 770px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8243\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195857.jpg\" alt=\"\" width=\"770\" height=\"684\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195857.jpg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195857-300x266.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195857-768x682.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_2023_1130_195857-705x626.jpg 705w\" sizes=\"(max-width: 770px) 100vw, 770px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8244\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.08.jpeg\" alt=\"\" width=\"762\" height=\"762\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.08.jpeg 762w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.08-300x300.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.08-80x80.jpeg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.08-36x36.jpeg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.08-180x180.jpeg 180w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.08-705x705.jpeg 705w\" sizes=\"(max-width: 762px) 100vw, 762px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8245\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-1.jpeg\" alt=\"\" width=\"753\" height=\"753\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-1.jpeg 753w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-1-300x300.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-1-80x80.jpeg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-1-36x36.jpeg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-1-180x180.jpeg 180w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-1-705x705.jpeg 705w\" sizes=\"(max-width: 753px) 100vw, 753px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8246\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07.jpeg\" alt=\"\" width=\"762\" height=\"762\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07.jpeg 762w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-300x300.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-80x80.jpeg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-36x36.jpeg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-180x180.jpeg 180w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.07-705x705.jpeg 705w\" sizes=\"(max-width: 762px) 100vw, 762px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8247\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-2.jpeg\" alt=\"\" width=\"761\" height=\"761\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-2.jpeg 761w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-2-300x300.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-2-80x80.jpeg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-2-36x36.jpeg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-2-180x180.jpeg 180w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-2-705x705.jpeg 705w\" sizes=\"(max-width: 761px) 100vw, 761px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8248\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-1.jpeg\" alt=\"\" width=\"770\" height=\"770\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-1.jpeg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-1-300x300.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-1-80x80.jpeg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-1-768x768.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-1-36x36.jpeg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-1-180x180.jpeg 180w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-1-705x705.jpeg 705w\" sizes=\"(max-width: 770px) 100vw, 770px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8249\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06.jpeg\" alt=\"\" width=\"759\" height=\"759\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06.jpeg 759w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-300x300.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-80x80.jpeg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-36x36.jpeg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-180x180.jpeg 180w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-17.14.06-705x705.jpeg 705w\" sizes=\"(max-width: 759px) 100vw, 759px\" \/><\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-lqqk4kli-c1de1186a6394121af50d564a69d5053 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone size-large wp-image-8458\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-11-1030x461.png\" alt=\"\" width=\"1030\" height=\"461\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-11-1030x461.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-11-300x134.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-11-768x344.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-11-705x316.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-11.png 1266w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8459\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-8-1030x491.png\" alt=\"\" width=\"1030\" height=\"491\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-8-1030x491.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-8-300x143.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-8-768x366.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-8-705x336.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-8.png 1270w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8460\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-9-1030x460.png\" alt=\"\" width=\"1030\" height=\"460\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-9-1030x460.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-9-300x134.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-9-768x343.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-9-705x315.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-9.png 1274w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8461\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/d-4-1030x544.png\" alt=\"\" width=\"1030\" height=\"544\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/d-4-1030x544.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/d-4-300x158.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/d-4-768x405.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/d-4-710x375.png 710w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/d-4-705x372.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/d-4.png 1273w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_5'  class='avia-section av-l3d198-568007a1fdce966e8d87153cf5dff8a4 main_color avia-section-default avia-no-border-styling  avia-builder-el-24  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6700'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-idxnto-b80770fd9388b2a28dc47b774bae022f\">\n.flex_column.av-idxnto-b80770fd9388b2a28dc47b774bae022f{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-idxnto-b80770fd9388b2a28dc47b774bae022f av_one_full  avia-builder-el-25  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-gqqyks-df7cd033353af6d6dfd72b2d5045845b\">\n#top .av-special-heading.av-gqqyks-df7cd033353af6d6dfd72b2d5045845b{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-gqqyks-df7cd033353af6d6dfd72b2d5045845b .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-gqqyks-df7cd033353af6d6dfd72b2d5045845b .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-gqqyks-df7cd033353af6d6dfd72b2d5045845b .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-gqqyks-df7cd033353af6d6dfd72b2d5045845b av-special-heading-h2 custom-color-heading  avia-builder-el-26  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >PAUTAN <span style=\"color: #ffffff;\">VIDEO<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-fihlgs-4a03a7741eb1917606f6836444fdb22a\">\n#top .hr.hr-invisible.av-fihlgs-4a03a7741eb1917606f6836444fdb22a{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-fihlgs-4a03a7741eb1917606f6836444fdb22a hr-invisible  avia-builder-el-27  el_after_av_one_full  el_before_av_video '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<div  class='avia-video av-ejvgcs-1e58e0a72ed22b3c35e085cd3cc0981b avia-video-16-9 av-no-preview-image avia-video-load-always av-lazyload-immediate av-lazyload-video-embed'  itemprop=\"video\" itemtype=\"https:\/\/schema.org\/VideoObject\"  data-original_url='https:\/\/youtu.be\/SlQ4gbbVF2k?si=ARjWVnr3LBYGwhZY'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"M.Ibrahim (Aku &amp; Guru) | Zon Tengah SEL BMS&#039;23\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/SlQ4gbbVF2k?feature=oembed&autoplay=0&loop=0&controls=1&mute=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen><\/iframe><\/div><\/script><div class='av-click-to-play-overlay'><div class=\"avia_playpause_icon\"><\/div><\/div><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='undian23'  class='avia-section av-d70mgc-2c8d82af7f69aa4120eeba0cbe2a1b64 main_color avia-section-default avia-no-border-styling  avia-builder-el-29  el_after_av_section  avia-builder-el-last  voting avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6700'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-3qquk-7c3153b1c3d7e34b4034c5279366421d sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-3qquk-7c3153b1c3d7e34b4034c5279366421d\">\n.flex_column.av-3qquk-7c3153b1c3d7e34b4034c5279366421d{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-3qquk-7c3153b1c3d7e34b4034c5279366421d av_one_half  avia-builder-el-30  el_before_av_one_half  avia-builder-el-first  first flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-8jse24-cdd588b493f9605fbf6f7e371fb317b6 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\" \"=\"\">\n\t<h1 class=\" it_epoll_title\">\n\t<span class=\"it_epoll_title_exact_on\"><\/span>\n\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/online.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/x.png\">\n\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t<\/svg>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t<div class=\"it_epoll_survey-item-action \">\n\t\t\t\t\t<form id=\"form_voteon\">\n\t\t\t\t\t\t<input type=\"hidden\" name=\"onpostid\" id=\"onpostid\" value=\"\">\n\t\t\t\t\t\t<div id=\"countdownon\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteon\" value=\"Vote\" onclick=\"voteon('online');\">\n\t\t\t\t\t<\/form>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient onwidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percenton\"> 0% <\/span>\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"5\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 5 \/ 5 <\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n\n<\/div><\/section><\/div><div class='av-flex-placeholder'><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-7l9oek-f10195667f5f5221ddb3ebbca05edbf7\">\n.flex_column.av-7l9oek-f10195667f5f5221ddb3ebbca05edbf7{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-7l9oek-f10195667f5f5221ddb3ebbca05edbf7 av_one_half  avia-builder-el-32  el_after_av_one_half  el_before_av_one_full  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-5vavrg-110fb4059e92cc3f9b189fd5606a793c '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\">\n\t<h1 class=\"it_epoll_title\">\n\t\t<span class=\"it_epoll_title_exact_os\"><\/span>\n\t\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/onsite.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/x.png\">\n\t\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-item-action it_epoll_survey-item-action-disabled\">\n\t\t\t\t\t\t<form id=\"form_voteos\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"ospostid\" id=\"ospostid\" value=\"\">\n\t\t\t\t\t\t\t<div id=\"countdownos\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteos\" value=\"Vote\" onclick=\"voteos('os')\">\n\t\t\t\t\t\t<\/form>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient oswidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percentos\"> 0% <\/span>\n\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"3\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 3 \/ 3 <\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n<\/div><\/section><\/div><\/div><!--close column table wrapper. Autoclose: 1 -->\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-3p2yb0-cf92360dabbf8d5be7c6600cd02543df\">\n.flex_column.av-3p2yb0-cf92360dabbf8d5be7c6600cd02543df{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-3p2yb0-cf92360dabbf8d5be7c6600cd02543df av_one_full  avia-builder-el-34  el_after_av_one_half  avia-builder-el-last  first flex_column_div av-zero-column-padding  column-top-margin'     ><section  class='av_textblock_section av-2glvf0-155e255fd58aa08b32662288179ac446 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: center;\"><img decoding=\"async\" src=\"https:\/\/chart.googleapis.com\/chart?chs=300x300&cht=qr&chl=https:\/\/www.artgallery.gov.my\/bms&choe=UTF-8\" \/><\/p>\n<\/div><\/section><\/div>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":8463,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36,37],"tags":[55],"class_list":["post-6700","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bms23","category-kuala-lumpur","tag-55"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6700","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6700"}],"version-history":[{"count":10,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6700\/revisions"}],"predecessor-version":[{"id":8847,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6700\/revisions\/8847"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/8463"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6700"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6700"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6700"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}