<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 - Muhamad Nizar bin Sulaiman');	
})


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', 'Muhamad Nizar bin Sulaiman');
			
				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 - Muhamad Nizar bin Sulaiman');
})

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', 'Muhamad Nizar bin Sulaiman');

		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":2932,"date":"2021-11-17T15:59:54","date_gmt":"2021-11-17T07:59:54","guid":{"rendered":"https:\/\/bms.awan.la\/?p=2932"},"modified":"2025-06-20T14:28:55","modified_gmt":"2025-06-20T06:28:55","slug":"muhamad-nizar-bin-sulaiman","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=2932","title":{"rendered":"Muhamad Nizar bin Sulaiman"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-gbxm50-818e4448f9ecfc6b3855fcef6469bbfc 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-2932'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-dx299g-56bfe7df90a6b3488ec47fbb8c4cb195\">\n#top .av-special-heading.av-dx299g-56bfe7df90a6b3488ec47fbb8c4cb195{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-dx299g-56bfe7df90a6b3488ec47fbb8c4cb195 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-dx299g-56bfe7df90a6b3488ec47fbb8c4cb195 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-dx299g-56bfe7df90a6b3488ec47fbb8c4cb195 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-dx299g-56bfe7df90a6b3488ec47fbb8c4cb195 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\"  >PESERTA<\/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-ckz2qc-f877b6e405688c1eb01ac10e924597a5\">\n.flex_column.av-ckz2qc-f877b6e405688c1eb01ac10e924597a5{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-ckz2qc-f877b6e405688c1eb01ac10e924597a5 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-afmftg-ce53187fceca7e9aafb4f89e6b511b32\">\n#top .hr.hr-invisible.av-afmftg-ce53187fceca7e9aafb4f89e6b511b32{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-afmftg-ce53187fceca7e9aafb4f89e6b511b32 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-kw38hod4-5bba2b949990ebd5f08f59514474548e\">\n#top .avia-icon-list-container.av-kw38hod4-5bba2b949990ebd5f08f59514474548e .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#635ec6;\n}\n#top .avia-icon-list-container.av-kw38hod4-5bba2b949990ebd5f08f59514474548e .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-kw38hod4-5bba2b949990ebd5f08f59514474548e  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-kw38hod4-5bba2b949990ebd5f08f59514474548e avia-iconlist-animate'>\n<li><div class='iconlist_icon av-kw38hnba-031998b24f95126b19aa0b1a30041eed 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\" ><p><span class=\"nama\">Muhamad Nizar bin Sulaiman<br \/>\n<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kw38h2rg-1ce5f8642c09fdc04ccfb0a3edd2e859 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\">Kuala Lumpur<br \/>\n<\/span><\/p>\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-8hqsjo-a3bb62355613fc6ba5f7afbb610d2e99\">\n.flex_column.av-8hqsjo-a3bb62355613fc6ba5f7afbb610d2e99{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-8hqsjo-a3bb62355613fc6ba5f7afbb610d2e99 av_two_third  avia-builder-el-5  el_after_av_one_third  avia-builder-el-last  flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kw381a7r-3eeb3ebc281873382cc7dd632835fff5\">\n.avia-image-container.av-kw381a7r-3eeb3ebc281873382cc7dd632835fff5 img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-kw381a7r-3eeb3ebc281873382cc7dd632835fff5 .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-kw381a7r-3eeb3ebc281873382cc7dd632835fff5 av-styling- avia-align-center  avia-builder-el-6  avia-builder-el-no-sibling '   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-3512 avia-img-lazy-loading-not-3512 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-1030x519.jpg\" alt='' title='Muhamad Nizar bin Sulaiman'  height=\"519\" width=\"1030\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-1030x519.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-300x151.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-768x387.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-1536x775.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-2048x1033.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-1500x757.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-705x356.jpg 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/div><\/div><\/div><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-7qks7o-aa006deaf98318d035fc7296b1f4fcfc main_color avia-section-default avia-no-border-styling  avia-builder-el-7  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-2932'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-5x7tf8-9cf1e7123cc795100cbcf6f830b42ee3\">\n.flex_column.av-5x7tf8-9cf1e7123cc795100cbcf6f830b42ee3{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-5x7tf8-9cf1e7123cc795100cbcf6f830b42ee3 av_one_full  avia-builder-el-8  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-4gzvyc-7fcdfa829968b848571bd1e6e398b3a2\">\n#top .av-special-heading.av-4gzvyc-7fcdfa829968b848571bd1e6e398b3a2{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-4gzvyc-7fcdfa829968b848571bd1e6e398b3a2 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-4gzvyc-7fcdfa829968b848571bd1e6e398b3a2 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-4gzvyc-7fcdfa829968b848571bd1e6e398b3a2 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-4gzvyc-7fcdfa829968b848571bd1e6e398b3a2 av-special-heading-h2 custom-color-heading  avia-builder-el-9  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >CADANGAN <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-2z7l5w-c04f4f88f9bf636a2b8bde6c3127a18b\">\n#top .hr.hr-invisible.av-2z7l5w-c04f4f88f9bf636a2b8bde6c3127a18b{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-2z7l5w-c04f4f88f9bf636a2b8bde6c3127a18b hr-invisible  avia-builder-el-10  el_after_av_one_full  el_before_av_hr '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-4hwoic-ca246214e3614fedc76307e199c92608\">\n#top .hr.hr-invisible.av-4hwoic-ca246214e3614fedc76307e199c92608{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-4hwoic-ca246214e3614fedc76307e199c92608 hr-invisible  avia-builder-el-11  el_after_av_hr  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-kw38gmee-7a708c451aa63da950eb1dd4f891e66f '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\">Ketika negara dilanda kemelut Covid-19, keutamaan sesuatu bidang adalah paling ketara semasa lockdown terutama pada tahun 2020, dan seni adalah bidang yang telah dilabel sebagai non essential, dengan penutupan galeri fizikal malah upacara kesenian seperti pameran amatlah terhad dan diadakan secara dalam talian. Kemudian berlaku lagi MCO terbaru pada tahun 2021, sepanjang tahun yang lalu akan idea untuk karya masih lagi terhad akan karya berbentuk tradisional dan malah BMS 2021 ini membuka peluang akan karya berbentuk digital, video, interaktif dan luar konteks galeri.<\/p>\n<p style=\"text-align: justify;\">Sepanjang MCO pada tahun 2020 dan 2021, bekerja sebagai guru seni telah banyak mengubah cara pengajaran secara dalam talian, studio yang selalunya penuh dengan cat dan kanvas kini berubah dalam bentuk digital, kanvas menjadi screen monitor, cat berus menjadi tetikus dan membuat disiplin sebagai artis menjadi berbeza. Sepanjang pengajaran dalam talian, banyak kelas mengajar lukis disiar di dalam Youtube dengan channel bertajuk &#8220;Let&#8217;s Draw&#8221; walau saluran ini bukan lah mendapat biew beribu-ribu tetapi cukup sekadar untuk para pelajar saya. Mengambil peluang ini untuk mengajar pelajar darjah 3 mengenai karya &#8211; karya seni tempatan yang terkenal, seperti Abdullah Ariff, Zulkifli Buyong, Latiff Mohidin, Syed Ahmad Jamal dan banyak lagi.<\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-kxvlfqdh-b0a804f0ae71b7a8149d09da7d7268b8 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone wp-image-4807 size-full\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-1.png\" alt=\"\" width=\"2158\" height=\"914\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-1.png 2158w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-1-300x127.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-1-1030x436.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-1-768x325.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-1-1536x651.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-1-2048x867.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-1-1500x635.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-1-705x299.png 705w\" sizes=\"(max-width: 2158px) 100vw, 2158px\" \/> <img decoding=\"async\" class=\"alignnone wp-image-4806 size-full\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-2.png\" alt=\"\" width=\"2094\" height=\"868\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-2.png 2094w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-2-300x124.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-2-1030x427.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-2-768x318.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-2-1536x637.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-2-2048x849.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-2-1500x622.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR-2-705x292.png 705w\" sizes=\"(max-width: 2094px) 100vw, 2094px\" \/><\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-kxvlkp8l-f53f5a39ab44ab69425f010368c110dd '   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-4809\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR3.png\" alt=\"\" width=\"4131\" height=\"2739\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR3.png 4131w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR3-300x199.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR3-1030x683.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR3-768x509.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR3-1536x1018.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR3-2048x1358.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR3-1500x995.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NIZAR3-705x467.png 705w\" sizes=\"(max-width: 4131px) 100vw, 4131px\" \/><\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-25pk50-5680da8a36fd5ab9de404b61107911df '   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\/2021\/11\/Proposal-Bakat-Muda-Sezaman.pdf&amp;embedded=true\" frameborder=\"0\"><\/iframe><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Proposal-Bakat-Muda-Sezaman.pdf\">Cadangan Karya<\/a><\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-kxvkxy39-fd4568cd5d07ad35391ee7823e8cd7f5 '   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-4798\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_121735.jpg\" alt=\"\" width=\"2340\" height=\"1080\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_121735.jpg 2340w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_121735-300x138.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_121735-1030x475.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_121735-768x354.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_121735-1536x709.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_121735-2048x945.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_121735-1500x692.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_121735-705x325.jpg 705w\" sizes=\"(max-width: 2340px) 100vw, 2340px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-4799\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135215.jpg\" alt=\"\" width=\"2340\" height=\"1080\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135215.jpg 2340w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135215-300x138.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135215-1030x475.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135215-768x354.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135215-1536x709.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135215-2048x945.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135215-1500x692.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135215-705x325.jpg 705w\" sizes=\"(max-width: 2340px) 100vw, 2340px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-4800\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135216.jpg\" alt=\"\" width=\"2340\" height=\"1080\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135216.jpg 2340w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135216-300x138.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135216-1030x475.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135216-768x354.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135216-1536x709.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135216-2048x945.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135216-1500x692.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135216-705x325.jpg 705w\" sizes=\"(max-width: 2340px) 100vw, 2340px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-4801\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135218.jpg\" alt=\"\" width=\"2340\" height=\"1080\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135218.jpg 2340w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135218-300x138.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135218-1030x475.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135218-768x354.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135218-1536x709.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135218-2048x945.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135218-1500x692.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135218-705x325.jpg 705w\" sizes=\"(max-width: 2340px) 100vw, 2340px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-4802\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135247.jpg\" alt=\"\" width=\"2340\" height=\"1080\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135247.jpg 2340w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135247-300x138.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135247-1030x475.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135247-768x354.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135247-1536x709.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135247-2048x945.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135247-1500x692.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135247-705x325.jpg 705w\" sizes=\"(max-width: 2340px) 100vw, 2340px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-4804\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135350.jpg\" alt=\"\" width=\"2340\" height=\"1080\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135350.jpg 2340w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135350-300x138.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135350-1030x475.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135350-768x354.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135350-1536x709.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135350-2048x945.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135350-1500x692.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_20211222_135350-705x325.jpg 705w\" sizes=\"(max-width: 2340px) 100vw, 2340px\" \/><\/p>\n<\/div><\/section>\n<div  class='avia-video av-ky77gcwl-7dfdaa1646ac0fbd4ca8dfe9cec0812c 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:\/\/www.youtube.com\/watch?v=5NKQIvvaW0Y '><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"Berkarya bersama Razin Lajak episode 1 : Lukisan pencil atas kertas\" width=\"1333\" height=\"1000\" src=\"https:\/\/www.youtube.com\/embed\/5NKQIvvaW0Y?feature=oembed&autoplay=0&loop=0&controls=1&mute=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><\/div><\/script><div class='av-click-to-play-overlay'><div class=\"avia_playpause_icon\"><\/div><\/div><\/div>\n<div  class='avia-video av-kytyhmt6-aba42996e2657d588e62980659dbc6cf 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:\/\/www.youtube.com\/watch?v=lg_xHLSEL78'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"Berkarya bersama Razin Lajak episode 2 : Lukisan Cat Air\" width=\"1333\" height=\"1000\" src=\"https:\/\/www.youtube.com\/embed\/lg_xHLSEL78?feature=oembed&autoplay=0&loop=0&controls=1&mute=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" 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='undian'  class='avia-section av-d4xyd0-395363089a450746ee2f67b462f737e5 main_color avia-section-default avia-no-border-styling  avia-builder-el-19  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-2932'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-b8mw4k-ca88d8319a33dd4f6dc240786ad4cca5 sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-b8mw4k-ca88d8319a33dd4f6dc240786ad4cca5\">\n.flex_column.av-b8mw4k-ca88d8319a33dd4f6dc240786ad4cca5{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-b8mw4k-ca88d8319a33dd4f6dc240786ad4cca5 av_one_half  avia-builder-el-20  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-9519qc-f0ff3c860b203135cee88f7b4c339caf '   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\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-scaled.jpg\">\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-8245x0-bb98c70b178b70204a0861c3fad36a5c\">\n.flex_column.av-8245x0-bb98c70b178b70204a0861c3fad36a5c{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-8245x0-bb98c70b178b70204a0861c3fad36a5c av_one_half  avia-builder-el-22  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-5jrf5g-052e4b7266d1affce1dcd9aae01be91d '   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\/2021\/11\/Muhamad-Nizar-bin-Sulaiman-scaled.jpg\">\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-3m39xw-7dcf1a284df3a82b009443a1b4e0f455\">\n.flex_column.av-3m39xw-7dcf1a284df3a82b009443a1b4e0f455{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-3m39xw-7dcf1a284df3a82b009443a1b4e0f455 av_one_full  avia-builder-el-24  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-2di4g4-685309a2fb579d6b5f9f79c94b9b5ab4 '   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":3512,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[34,21],"tags":[56],"class_list":["post-2932","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bms21","category-kuala-lumpur-2021","tag-56"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2932","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=2932"}],"version-history":[{"count":11,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2932\/revisions"}],"predecessor-version":[{"id":8823,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2932\/revisions\/8823"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/3512"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2932"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2932"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2932"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}