<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 - Aufa Nabila Binti Jafri, Muhammad Syafiq Kholid');	
})


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', 'Aufa Nabila Binti Jafri, Muhammad Syafiq Kholid');
			
				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 - Aufa Nabila Binti Jafri, Muhammad Syafiq Kholid');
})

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', 'Aufa Nabila Binti Jafri, Muhammad Syafiq Kholid');

		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":6969,"date":"2023-09-14T16:33:12","date_gmt":"2023-09-14T08:33:12","guid":{"rendered":"https:\/\/www.artgallery.gov.my\/bms\/?p=6969"},"modified":"2025-06-20T14:30:14","modified_gmt":"2025-06-20T06:30:14","slug":"aufa-nabila-binti-jafri-muhammad-syafiq-kholid","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=6969","title":{"rendered":"Aufa Nabila Binti Jafri, Muhammad Syafiq Kholid"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-1054n3d-c7bd05c9a9e29ca721daf5ff5e09626a 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-6969'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-xstvjt-dd6941ea3de68c69307cebb3616da84c\">\n#top .av-special-heading.av-xstvjt-dd6941ea3de68c69307cebb3616da84c{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-xstvjt-dd6941ea3de68c69307cebb3616da84c .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-xstvjt-dd6941ea3de68c69307cebb3616da84c .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-xstvjt-dd6941ea3de68c69307cebb3616da84c .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-xstvjt-dd6941ea3de68c69307cebb3616da84c 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-vthaex-e02f365fc793b77119833b84b5f22593\">\n.flex_column.av-vthaex-e02f365fc793b77119833b84b5f22593{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-vthaex-e02f365fc793b77119833b84b5f22593 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-u8a6bt-fef1286caaaa274f7a1cf4910e24ef7c\">\n#top .hr.hr-invisible.av-u8a6bt-fef1286caaaa274f7a1cf4910e24ef7c{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-u8a6bt-fef1286caaaa274f7a1cf4910e24ef7c 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-ln1hujhu-c31d3d7b95e124c6f819d19169202b71\">\n#top .avia-icon-list-container.av-ln1hujhu-c31d3d7b95e124c6f819d19169202b71 .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#edae44;\n}\n#top .avia-icon-list-container.av-ln1hujhu-c31d3d7b95e124c6f819d19169202b71 .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-ln1hujhu-c31d3d7b95e124c6f819d19169202b71  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-ln1hujhu-c31d3d7b95e124c6f819d19169202b71 avia-iconlist-animate'>\n<li><div class='iconlist_icon av-ln1hsn34-26ffeca65c20b1e30748ff5e81fba688 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>Aufa Nabila Binti Jafri<\/li>\n<li>Muhammad Syafiq Kholid<\/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-ln1ht4pp-df1221732b3acc145759e34dab6612ac 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\">Shah Alam \/ Klang, Selangor<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-ln1ht0l8-016d7c3dbda3ffd60a2ea19e11bbd02f 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\/AUFA-CV.pdf\" target=\"_blank\" rel=\"noopener\">Aufa Nabila Binti Jafri<\/a><\/li>\n<li><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/AUFA-CV.pdf\" target=\"_blank\" rel=\"noopener\">Muhammad Syafiq Kholid<\/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-smc9qh-433671f87d9c23c5c59232ab48b7145b\">\n.flex_column.av-smc9qh-433671f87d9c23c5c59232ab48b7145b{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-smc9qh-433671f87d9c23c5c59232ab48b7145b av_two_third  avia-builder-el-5  el_after_av_one_third  avia-builder-el-last  flex_column_div av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lo6wf1xw-044ddc3c52c537fa9bc053eb4922b94f\">\n.avia-image-container.av-lo6wf1xw-044ddc3c52c537fa9bc053eb4922b94f img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-lo6wf1xw-044ddc3c52c537fa9bc053eb4922b94f .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-lo6wf1xw-044ddc3c52c537fa9bc053eb4922b94f av-styling- avia-align-center  avia-builder-el-6  el_before_av_image  avia-builder-el-first '   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-8403 avia-img-lazy-loading-not-8403 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BIS_5980-1030x576.jpg\" alt='' title='BIS_5980'  height=\"576\" width=\"1030\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BIS_5980-1030x576.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BIS_5980-300x168.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BIS_5980-768x429.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BIS_5980-1536x858.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BIS_5980-2048x1144.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BIS_5980-1500x838.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BIS_5980-705x394.jpg 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/div><\/div><\/div><br \/>\n<br \/>\n<\/p><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-q7sp8p-b3f6276dd3f57573417df211dab77d2d main_color avia-section-default avia-no-border-styling  avia-builder-el-9  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-6969'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-nbyhmh-33f775a322d65b9eab15030d9ad704e3\">\n.flex_column.av-nbyhmh-33f775a322d65b9eab15030d9ad704e3{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-nbyhmh-33f775a322d65b9eab15030d9ad704e3 av_one_full  avia-builder-el-10  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-m6msix-47040fb5114efe9794aa722be82e4e3f\">\n#top .av-special-heading.av-m6msix-47040fb5114efe9794aa722be82e4e3f{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-m6msix-47040fb5114efe9794aa722be82e4e3f .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-m6msix-47040fb5114efe9794aa722be82e4e3f .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-m6msix-47040fb5114efe9794aa722be82e4e3f .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-m6msix-47040fb5114efe9794aa722be82e4e3f av-special-heading-h2 custom-color-heading  avia-builder-el-11  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-k0skw9-6e95db0ff10d46b7c10ffcf71c8814a7\">\n#top .hr.hr-invisible.av-k0skw9-6e95db0ff10d46b7c10ffcf71c8814a7{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-k0skw9-6e95db0ff10d46b7c10ffcf71c8814a7 hr-invisible  avia-builder-el-12  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-ln1hv1qa-e1e5c739120976791000f33cc06d90fa '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\">When Time Fades, 2023<\/p>\n<p style=\"text-align: justify;\">Seni instalasi ini merupakan olahan idea yang menyentuh sisi masyarakat, teknologi dan isu semasa melalui \u2018informal education\u2019 dalam bentuk penyampaian \u2018art installation\u2019. Penggunaan teknologi yang kian pesat pada zaman ini memberi impak yang ketara terhadap interaksi sesama manusia khususnya dalam konteks komunikasi bersemuka. Apatah lagi semenjak pandemik yang melanda dunia, hubungan ziarah-menziarahi semakin kurang dirai rentetan masih berbaki rasa fobia dan kerisauan dari sesetengah orang. Pemilihan ruang tamu dilihat sebagai simbolik ruang keluarga dan tempat berkumpul sanak-saudara juga pencetus gelombang berkasih-sayang sesama manusia. Namun, kewujudan teknologi sedikit sebanyak telah menghakis nilai-nilai tersebut. Penggunaannya yang berlebihan mencetuskan jurang interaksi organik antara manusia. Lantas, idea teknologi ini kami olahkan dalam simbolik television yang memainkan kompilasi video dan rakaman ulangan.<\/p>\n<p style=\"text-align: justify;\">Projek\/karya seni ini dilaksanakan adalah untuk mengemukakan:<\/p>\n<ul style=\"text-align: justify;\">\n<li>konsep projek\/karya seni ini adalah bersandarkan seni instalasi statik (art installation) yang akan dipasang di Selangor. Karya ini menggunakan satu ruangan ruang tamu dihiasi dengan perabot dan dinding yang keseluruhannya berwarna hitam. Dan akan ada satu television yang memainkan kompilasi video ulangan.<\/li>\n<li>konsep projek seni adalah ingin mengolah isu semasa yang berlaku dalam kalangan masyarakat sekaligus memberi pendedahan kepada komuniti setempat tentang proses integrasi seni itu sendiri (informal education)<\/li>\n<\/ul>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-jdqgmx-6d6f69a86cb2e9a1af44bbc2b2daba73 main_color avia-section-default avia-no-border-styling  avia-builder-el-14  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-6969'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-hzl4cp-94bcfba9d30c459cba290ba9b1f037ed\">\n.flex_column.av-hzl4cp-94bcfba9d30c459cba290ba9b1f037ed{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-hzl4cp-94bcfba9d30c459cba290ba9b1f037ed av_one_full  avia-builder-el-15  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-fgnl4p-f034aceb7b2742600c65299d0678f8e9\">\n#top .av-special-heading.av-fgnl4p-f034aceb7b2742600c65299d0678f8e9{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-fgnl4p-f034aceb7b2742600c65299d0678f8e9 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-fgnl4p-f034aceb7b2742600c65299d0678f8e9 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-fgnl4p-f034aceb7b2742600c65299d0678f8e9 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-fgnl4p-f034aceb7b2742600c65299d0678f8e9 av-special-heading-h2 custom-color-heading  avia-builder-el-16  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-drk315-fcb99040c22d6bdd96a1e1b58dfdd7b0\">\n#top .hr.hr-invisible.av-drk315-fcb99040c22d6bdd96a1e1b58dfdd7b0{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-drk315-fcb99040c22d6bdd96a1e1b58dfdd7b0 hr-invisible  avia-builder-el-17  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-ln1hwb2v-7bfef8a9789fde8b64bfd278f5c2bc9a '   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-6970\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-19-1030x601.png\" alt=\"\" width=\"1030\" height=\"601\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-19-1030x601.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-19-300x175.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-19-768x448.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-19-1536x896.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-19-2048x1195.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-19-1500x875.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-19-705x411.png 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-6971\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-17-1030x487.png\" alt=\"\" width=\"1030\" height=\"487\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-17-1030x487.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-17-300x142.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-17-768x363.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-17-1536x726.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-17-2048x968.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-17-1500x709.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-17-705x333.png 705w\" 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-lo8abxh3-4a9896282e289aebe94c8cbfc35ac99b main_color avia-section-default avia-no-border-styling  avia-builder-el-19  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-6969'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-bk402h-ea9e8829cc61faa79e65a35e44bd23b3\">\n.flex_column.av-bk402h-ea9e8829cc61faa79e65a35e44bd23b3{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-bk402h-ea9e8829cc61faa79e65a35e44bd23b3 av_one_full  avia-builder-el-20  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lo8abciu-d3ce722f0a63616ad25e4a4d84939643\">\n#top .av-special-heading.av-lo8abciu-d3ce722f0a63616ad25e4a4d84939643{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-lo8abciu-d3ce722f0a63616ad25e4a4d84939643 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-lo8abciu-d3ce722f0a63616ad25e4a4d84939643 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-lo8abciu-d3ce722f0a63616ad25e4a4d84939643 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-lo8abciu-d3ce722f0a63616ad25e4a4d84939643 av-special-heading-h2 custom-color-heading  avia-builder-el-21  el_before_av_textblock  avia-builder-el-first '><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><br \/>\n<section  class='av_textblock_section av-loid0j1p-74874fe0138f3710be6330cbf0c473a1 '   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-8349\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.20-1030x773.jpeg\" alt=\"\" width=\"1030\" height=\"773\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.20-1030x773.jpeg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.20-300x225.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.20-768x576.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.20-705x529.jpeg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.20.jpeg 1280w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8350\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-1-773x1030.jpeg\" alt=\"\" width=\"773\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-1-773x1030.jpeg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-1-225x300.jpeg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-1-768x1024.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-1-529x705.jpeg 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-1.jpeg 960w\" sizes=\"(max-width: 773px) 100vw, 773px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8351\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-773x1030.jpeg\" alt=\"\" width=\"773\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-773x1030.jpeg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-225x300.jpeg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-768x1024.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19-529x705.jpeg 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.19.jpeg 960w\" sizes=\"(max-width: 773px) 100vw, 773px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8352\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-1-773x1030.jpeg\" alt=\"\" width=\"773\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-1-773x1030.jpeg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-1-225x300.jpeg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-1-768x1024.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-1-529x705.jpeg 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-1.jpeg 960w\" sizes=\"(max-width: 773px) 100vw, 773px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8353\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-773x1030.jpeg\" alt=\"\" width=\"773\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-773x1030.jpeg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-225x300.jpeg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-768x1024.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18-529x705.jpeg 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.18.jpeg 960w\" sizes=\"(max-width: 773px) 100vw, 773px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8354\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-1-773x1030.jpeg\" alt=\"\" width=\"773\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-1-773x1030.jpeg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-1-225x300.jpeg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-1-768x1024.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-1-529x705.jpeg 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-1.jpeg 960w\" sizes=\"(max-width: 773px) 100vw, 773px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8355\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-773x1030.jpeg\" alt=\"\" width=\"773\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-773x1030.jpeg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-225x300.jpeg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-768x1024.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17-529x705.jpeg 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-28-at-16.13.17.jpeg 960w\" sizes=\"(max-width: 773px) 100vw, 773px\" \/><\/p>\n<\/div><\/section><br \/>\n<section  class='av_textblock_section av-lqpunkbn-ba5a25992500cf240dfa5b1aff3021a6 '   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-7639\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0007-773x1030.jpg\" alt=\"\" width=\"773\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0007-773x1030.jpg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0007-225x300.jpg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0007-768x1024.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0007-1152x1536.jpg 1152w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0007-1536x2048.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0007-1125x1500.jpg 1125w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0007-529x705.jpg 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0007.jpg 1920w\" sizes=\"(max-width: 773px) 100vw, 773px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-7641\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0006-773x1030.jpg\" alt=\"\" width=\"773\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0006-773x1030.jpg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0006-225x300.jpg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0006-768x1024.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0006-1152x1536.jpg 1152w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0006-1536x2048.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0006-1125x1500.jpg 1125w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0006-529x705.jpg 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231124-WA0006.jpg 1920w\" sizes=\"(max-width: 773px) 100vw, 773px\" \/><img decoding=\"async\" class=\"alignnone size-full wp-image-7637\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010915_VN-Video-Editor.jpg\" alt=\"\" width=\"577\" height=\"703\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010915_VN-Video-Editor.jpg 577w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010915_VN-Video-Editor-246x300.jpg 246w\" sizes=\"(max-width: 577px) 100vw, 577px\" \/><img decoding=\"async\" class=\"alignnone size-full wp-image-7638\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010856_VN-Video-Editor.jpg\" alt=\"\" width=\"610\" height=\"672\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010856_VN-Video-Editor.jpg 610w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010856_VN-Video-Editor-272x300.jpg 272w\" sizes=\"(max-width: 610px) 100vw, 610px\" \/><img decoding=\"async\" class=\"alignnone size-full wp-image-7635\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_011009_VN-Video-Editor.jpg\" alt=\"\" width=\"597\" height=\"637\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_011009_VN-Video-Editor.jpg 597w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_011009_VN-Video-Editor-281x300.jpg 281w\" sizes=\"(max-width: 597px) 100vw, 597px\" \/><img decoding=\"async\" class=\"alignnone size-full wp-image-7636\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010946_VN-Video-Editor.jpg\" alt=\"\" width=\"575\" height=\"710\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010946_VN-Video-Editor.jpg 575w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010946_VN-Video-Editor-243x300.jpg 243w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231124_010946_VN-Video-Editor-571x705.jpg 571w\" sizes=\"(max-width: 575px) 100vw, 575px\" \/><\/p>\n<\/div><\/section><\/p><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-8owicp-26760cc754b519bb9634d28a36bb368e\">\n#top .hr.hr-invisible.av-8owicp-26760cc754b519bb9634d28a36bb368e{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-8owicp-26760cc754b519bb9634d28a36bb368e hr-invisible  avia-builder-el-24  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-lo8abioa-518293f459154d4273610ca4a1e385e3 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_5'  class='avia-section av-867hyh-b0b9708cec502b3f8872eae2bbf716f5 main_color avia-section-default avia-no-border-styling  avia-builder-el-26  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-6969'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-62p3ax-e13eb19305e71cc5809bbe4427ec36c3\">\n.flex_column.av-62p3ax-e13eb19305e71cc5809bbe4427ec36c3{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-62p3ax-e13eb19305e71cc5809bbe4427ec36c3 av_one_full  avia-builder-el-27  el_before_av_video  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lo8acah1-46d46acd438c96a328337a54ed5008c3\">\n#top .av-special-heading.av-lo8acah1-46d46acd438c96a328337a54ed5008c3{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-lo8acah1-46d46acd438c96a328337a54ed5008c3 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-lo8acah1-46d46acd438c96a328337a54ed5008c3 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-lo8acah1-46d46acd438c96a328337a54ed5008c3 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-lo8acah1-46d46acd438c96a328337a54ed5008c3 av-special-heading-h2 custom-color-heading  avia-builder-el-28  el_before_av_hr  avia-builder-el-first '><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><br \/>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-3syhnt-cb5f4554532aaf1b7520d5f334981489\">\n#top .hr.hr-invisible.av-3syhnt-cb5f4554532aaf1b7520d5f334981489{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-3syhnt-cb5f4554532aaf1b7520d5f334981489 hr-invisible  avia-builder-el-29  el_after_av_heading  avia-builder-el-last '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div><\/p><\/div><div  class='avia-video av-2s1m5l-da9847082425cf135c01f322607e1bb9 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\/bZF4Nx8VPeU?si=VDawYeDHCS3GZ-Qs'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"Aufa Nabila (When Time Fades) | Zon Tengah SEL BMS&#039;23\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/bZF4Nx8VPeU?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<section  class='av_textblock_section av-2p2vk9-b7476d936dc98e63b2244260e892dcab '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><\/div><\/section>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='undian23'  class='avia-section av-cy9zi1-8fdf779085a61d8a29acb73251bbf02c main_color avia-section-default avia-no-border-styling  avia-builder-el-32  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-6969'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-auy81l-e4930f942c3fb5223e3406b848ced593 sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-auy81l-e4930f942c3fb5223e3406b848ced593\">\n.flex_column.av-auy81l-e4930f942c3fb5223e3406b848ced593{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-auy81l-e4930f942c3fb5223e3406b848ced593 av_one_half  avia-builder-el-33  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-95kv09-3713fb1a292ae73a788e6d0ad6783c1e '   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\/aufa.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-810duh-bcb5d22fa2ac805a35f41065cb7b429f\">\n.flex_column.av-810duh-bcb5d22fa2ac805a35f41065cb7b429f{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-810duh-bcb5d22fa2ac805a35f41065cb7b429f av_one_half  avia-builder-el-35  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-mh9gp-66368f1abe50e53804011f930627a4ed '   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\/aufa.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-3l6ki1-f0940635bec065f5a91c81ef20eec12b\">\n.flex_column.av-3l6ki1-f0940635bec065f5a91c81ef20eec12b{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-3l6ki1-f0940635bec065f5a91c81ef20eec12b av_one_full  avia-builder-el-37  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-1zfb3t-d323ea09328d81b75480c4db29310350 '   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":7493,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36,35],"tags":[55],"class_list":["post-6969","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bms23","category-selangor","tag-55"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6969","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=6969"}],"version-history":[{"count":11,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6969\/revisions"}],"predecessor-version":[{"id":8829,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6969\/revisions\/8829"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/7493"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6969"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6969"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6969"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}