<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 - Abdullah Ehlid Al Walid Luli');	
})


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', 'Abdullah Ehlid Al Walid Luli');
			
				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 - Abdullah Ehlid Al Walid Luli');
})

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', 'Abdullah Ehlid Al Walid Luli');

		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":2764,"date":"2021-11-15T08:31:25","date_gmt":"2021-11-15T00:31:25","guid":{"rendered":"https:\/\/bms.awan.la\/?p=2764"},"modified":"2025-07-09T21:37:07","modified_gmt":"2025-07-09T13:37:07","slug":"abdullah-ehlid-al-walid-luli","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=2764","title":{"rendered":"Abdullah Ehlid Al Walid Luli"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-n0o0r0-686ea7b5ffd406ba3fe80ad4c0e2153f 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-2764'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kbm5fg-f3de9260aea581a23d732b00229587ba\">\n#top .av-special-heading.av-kbm5fg-f3de9260aea581a23d732b00229587ba{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-kbm5fg-f3de9260aea581a23d732b00229587ba .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-kbm5fg-f3de9260aea581a23d732b00229587ba .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-kbm5fg-f3de9260aea581a23d732b00229587ba .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-kbm5fg-f3de9260aea581a23d732b00229587ba 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-jgar0c-c61710a94da4f3fa08f8bca040ece5dd\">\n.flex_column.av-jgar0c-c61710a94da4f3fa08f8bca040ece5dd{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-jgar0c-c61710a94da4f3fa08f8bca040ece5dd 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-h8et24-e1413f990d402a012ac203b57294afe7\">\n#top .hr.hr-invisible.av-h8et24-e1413f990d402a012ac203b57294afe7{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-h8et24-e1413f990d402a012ac203b57294afe7 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-kvzxih3y-8ad49daeea9fd4db88fb1eb5e2f91020\">\n#top .avia-icon-list-container.av-kvzxih3y-8ad49daeea9fd4db88fb1eb5e2f91020 .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#635ec6;\n}\n#top .avia-icon-list-container.av-kvzxih3y-8ad49daeea9fd4db88fb1eb5e2f91020 .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-kvzxih3y-8ad49daeea9fd4db88fb1eb5e2f91020  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-kvzxih3y-8ad49daeea9fd4db88fb1eb5e2f91020 avia-iconlist-animate'>\n<li><div class='iconlist_icon av-kvzxh0i3-4eef256d84884422d44487f40ed936cd 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\">Abdullah Ehlid Al Walid Luli @ Ehlid Luli<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kvzxifvy-1c221b48cc032656459d5b8789918743 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\">Kelantan<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kvzxi5kg-1841b153a730fe2052c42388c5411087 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\" ><p>Abdullah Ehlid Al Walid Luli @ Ehlid Luli<\/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-5ge18-77ca94657c71b5983a09b68eca89fb76\">\n.flex_column.av-5ge18-77ca94657c71b5983a09b68eca89fb76{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-5ge18-77ca94657c71b5983a09b68eca89fb76 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-kvzxj42b-0f315826bbf7c363429461ff1b7f6b15\">\n.avia-image-container.av-kvzxj42b-0f315826bbf7c363429461ff1b7f6b15 img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-kvzxj42b-0f315826bbf7c363429461ff1b7f6b15 .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-kvzxj42b-0f315826bbf7c363429461ff1b7f6b15 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-3568 avia-img-lazy-loading-not-3568 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Abdullah-Ehlid-Al-Walid-bin-Luli-1030x625.jpg\" alt='' title='Abdullah Ehlid Al Walid bin Luli'  height=\"625\" width=\"1030\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Abdullah-Ehlid-Al-Walid-bin-Luli-1030x625.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Abdullah-Ehlid-Al-Walid-bin-Luli-300x182.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Abdullah-Ehlid-Al-Walid-bin-Luli-768x466.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Abdullah-Ehlid-Al-Walid-bin-Luli-1536x932.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Abdullah-Ehlid-Al-Walid-bin-Luli-2048x1243.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Abdullah-Ehlid-Al-Walid-bin-Luli-1500x911.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Abdullah-Ehlid-Al-Walid-bin-Luli-705x428.jpg 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/div><\/div><\/div><\/div><\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-droa3w-362518955a364006e29a9ec4756d3bc9 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-2764'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-cwqdss-78083385888430ebba598b565d8dc217\">\n.flex_column.av-cwqdss-78083385888430ebba598b565d8dc217{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-cwqdss-78083385888430ebba598b565d8dc217 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-bj6h4c-91e1c8d79aefbbb795d27eee66bc55c3\">\n#top .av-special-heading.av-bj6h4c-91e1c8d79aefbbb795d27eee66bc55c3{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-bj6h4c-91e1c8d79aefbbb795d27eee66bc55c3 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-bj6h4c-91e1c8d79aefbbb795d27eee66bc55c3 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-bj6h4c-91e1c8d79aefbbb795d27eee66bc55c3 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-bj6h4c-91e1c8d79aefbbb795d27eee66bc55c3 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-9ibvjg-00618d922a1a9aacb318d33fa90120da\">\n#top .hr.hr-invisible.av-9ibvjg-00618d922a1a9aacb318d33fa90120da{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-9ibvjg-00618d922a1a9aacb318d33fa90120da hr-invisible  avia-builder-el-10  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-kvzxkd83-5d3ec3e796a04836eb040ef4477cc799 '   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-4834\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1.png\" alt=\"\" width=\"3921\" height=\"2617\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1.png 3921w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1-300x200.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1-1030x687.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1-768x513.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1-1536x1025.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1-2048x1367.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1-1500x1001.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1-705x471.png 705w\" sizes=\"(max-width: 3921px) 100vw, 3921px\" \/><\/p>\n<p style=\"text-align: justify;\">I am representing and focusing on my inner vision of the environments that involve the incorporation of urban and natural elements as an attempt to create a new narrative in my artwork. The boundaries between urban and nature became more blurred each day. The unique natural landscapes are slowly disappearing before our\u00a0 eyes because of the rise of industrialization and\u00a0 urbanization. The modern\u00a0 landscape we see today is\u00a0 landscapes that are forced to accept something foreign in its original\u00a0 place. We no longer see natural landscapes but man-made landscapes. This led me to evoke my sensations that constituted a subjective experience toward both elements. Hence, the need to deal with my mindscape by identifying, selecting, redesigning, simplifying, and patterning the subjects.<\/p>\n<p style=\"text-align: justify;\">I am rejected by the notion of a single vantage point and portrayed a different combination and collision of natural and man-made elements, paradox, logic and illogical, ultimately applying an allegorical concept. Those are the energy of the cosmos as my attempts to transport the viewer into my world of color,depth, and detail. The viewers are invited to enter and move around through the\u00a0 installation to experience the ambiance of art and able to explore closely around the painting and the three-dimensional that interact with one another in space. Besides, it is making them as a part of the art<\/p>\n<p style=\"text-align: justify;\">The conceptual landscape is also a representation of how my mind is formed from a foundation of thought, reason, and aesthetics that is constituted by collaboration, reflexive, and participatory methods. Those entities are simultaneously at odds and interconnected. i am not against the modernization but just to remind us in the quest of development, we should never throw away or forget what God had bestowed upon us.<\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-kxvzlrmc-607295d1c37097e2f516628a19207f6e '   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-4838\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3.png\" alt=\"\" width=\"2570\" height=\"1826\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3.png 2570w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3-300x213.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3-1030x732.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3-768x546.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3-1536x1091.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3-2048x1455.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3-1500x1066.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3-260x185.png 260w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/3-705x501.png 705w\" sizes=\"(max-width: 2570px) 100vw, 2570px\" \/> <img decoding=\"async\" class=\"alignnone size-full wp-image-4840\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/4.png\" alt=\"\" width=\"2481\" height=\"1569\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/4.png 2481w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/4-300x190.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/4-1030x651.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/4-768x486.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/4-1536x971.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/4-2048x1295.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/4-1500x949.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/4-705x446.png 705w\" sizes=\"(max-width: 2481px) 100vw, 2481px\" \/> <img decoding=\"async\" class=\"alignnone size-full wp-image-4846\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20220101_155556-scaled.jpg\" alt=\"\" width=\"1807\" height=\"2560\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20220101_155556-scaled.jpg 1807w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20220101_155556-212x300.jpg 212w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20220101_155556-727x1030.jpg 727w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20220101_155556-768x1088.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20220101_155556-1084x1536.jpg 1084w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20220101_155556-1446x2048.jpg 1446w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20220101_155556-1059x1500.jpg 1059w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20220101_155556-498x705.jpg 498w\" sizes=\"(max-width: 1807px) 100vw, 1807px\" \/><img decoding=\"async\" class=\"alignnone size-full wp-image-4845\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/bms21-poster-scaled.jpg\" alt=\"\" width=\"2067\" height=\"2560\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/bms21-poster-scaled.jpg 2067w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/bms21-poster-242x300.jpg 242w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/bms21-poster-832x1030.jpg 832w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/bms21-poster-768x951.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/bms21-poster-1240x1536.jpg 1240w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/bms21-poster-1654x2048.jpg 1654w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/bms21-poster-1211x1500.jpg 1211w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/bms21-poster-569x705.jpg 569w\" sizes=\"(max-width: 2067px) 100vw, 2067px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-8589a4-a98aa8fac55570ecaf99b55d8fb67e01 main_color avia-section-default avia-no-border-styling  avia-builder-el-13  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2764'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-5tds5o-031bea8b154dfc4ec99b594b2cd36fb5\">\n.flex_column.av-5tds5o-031bea8b154dfc4ec99b594b2cd36fb5{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-5tds5o-031bea8b154dfc4ec99b594b2cd36fb5 av_one_full  avia-builder-el-14  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-3htdos-75a0e40faf39680e8627e6923968d677\">\n#top .av-special-heading.av-3htdos-75a0e40faf39680e8627e6923968d677{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-3htdos-75a0e40faf39680e8627e6923968d677 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-3htdos-75a0e40faf39680e8627e6923968d677 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-3htdos-75a0e40faf39680e8627e6923968d677 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-3htdos-75a0e40faf39680e8627e6923968d677 av-special-heading-h2 custom-color-heading  avia-builder-el-15  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >CADANGAN <span style=\"color: #ffffff;\">LOKASI<\/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-2l8br0-44c60337c1335f23d7cb6b00d5f8eb44\">\n#top .hr.hr-invisible.av-2l8br0-44c60337c1335f23d7cb6b00d5f8eb44{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-2l8br0-44c60337c1335f23d7cb6b00d5f8eb44 hr-invisible  avia-builder-el-16  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-kvzxl9hz-f551fd3a238cebe9813912fce120fb5b '   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-4841\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/5-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1920\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/5-scaled.jpg 2560w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/5-300x225.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/5-1030x773.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/5-768x576.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/5-1536x1152.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/5-2048x1536.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/5-1500x1125.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/5-705x529.jpg 705w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" \/> <img decoding=\"async\" class=\"alignnone size-full wp-image-4836\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/2.png\" alt=\"\" width=\"8196\" height=\"4386\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/2.png 8196w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/2-300x161.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/2-1030x551.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/2-768x411.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/2-1536x822.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/2-2048x1096.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/2-1500x803.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/2-705x377.png 705w\" sizes=\"(max-width: 8196px) 100vw, 8196px\" \/> <img decoding=\"async\" class=\"alignnone size-full wp-image-4842\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/6-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1920\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/6-scaled.jpg 2560w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/6-300x225.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/6-1030x773.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/6-768x576.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/6-1536x1152.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/6-2048x1536.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/6-1500x1125.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/6-705x529.jpg 705w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4'  class='avia-section av-59mu0s-cbd58b6c3099c760261ddb41d32ec4e2 main_color avia-section-default avia-no-border-styling  avia-builder-el-18  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2764'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-4iv6nw-c03bd076f41376ee58cb36d21c286c2e\">\n.flex_column.av-4iv6nw-c03bd076f41376ee58cb36d21c286c2e{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4iv6nw-c03bd076f41376ee58cb36d21c286c2e av_one_full  avia-builder-el-19  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kxd1fq3o-f58ec32a1f4d756b9c2ea04871fea29d\">\n#top .av-special-heading.av-kxd1fq3o-f58ec32a1f4d756b9c2ea04871fea29d{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-kxd1fq3o-f58ec32a1f4d756b9c2ea04871fea29d .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-kxd1fq3o-f58ec32a1f4d756b9c2ea04871fea29d .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-kxd1fq3o-f58ec32a1f4d756b9c2ea04871fea29d .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-kxd1fq3o-f58ec32a1f4d756b9c2ea04871fea29d av-special-heading-h2 custom-color-heading  avia-builder-el-20  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KARYA <span style=\"color: #ffffff;\">AKHIR<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-2h4v3w-4f8296a3d39f0149253c4321adf6dd74\">\n#top .hr.hr-invisible.av-2h4v3w-4f8296a3d39f0149253c4321adf6dd74{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-2h4v3w-4f8296a3d39f0149253c4321adf6dd74 hr-invisible  avia-builder-el-21  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-kxd1ihmi-388f14f3cd13c6c2a10b44328f834315 '   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-3838\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639264421437-1030x1030.jpg\" alt=\"\" width=\"1030\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639264421437-1030x1030.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639264421437-300x300.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639264421437-80x80.jpg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639264421437-768x768.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639264421437-36x36.jpg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639264421437-180x180.jpg 180w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639264421437-705x705.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639264421437.jpg 1080w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-3841\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639382492924-1030x687.jpg\" alt=\"\" width=\"1030\" height=\"687\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639382492924-1030x687.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639382492924-300x200.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639382492924-768x512.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639382492924-705x470.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/FB_IMG_1639382492924.jpg 1080w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<\/div><\/section>\n<div  class='avia-video av-kxd1lllz-a45b2c4fb7803da1f0890c50907eee53 avia-video-16-9 av-no-preview-image avia-video-load-always avia-video-html5'  itemprop=\"video\" itemtype=\"https:\/\/schema.org\/VideoObject\"  data-original_url='https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1639393790272-1.mp4'><video class='avia_video'    preload=\"auto\"  controls id='player_2764_505758059_171916556'><source src='https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/1639393790272-1.mp4' type='video\/mp4' \/><\/video><\/div>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='undian'  class='avia-section av-cls7zg-41c50fdc9933ef689cdead8cfb176230 main_color avia-section-default avia-no-border-styling  avia-builder-el-24  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-2764'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-apxvlo-88d7aeb2a73a9810974a2670eb0acd13 sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-apxvlo-88d7aeb2a73a9810974a2670eb0acd13\">\n.flex_column.av-apxvlo-88d7aeb2a73a9810974a2670eb0acd13{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-apxvlo-88d7aeb2a73a9810974a2670eb0acd13 av_one_half  avia-builder-el-25  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-90osvw-e60b47ce7418236a41ab293ea764c71d '   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\/Abdullah-Ehlid-Al-Walid-bin-Luli-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-7s609o-88ca08bb0bc710ea27c954c37f5e0fae\">\n.flex_column.av-7s609o-88ca08bb0bc710ea27c954c37f5e0fae{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-7s609o-88ca08bb0bc710ea27c954c37f5e0fae av_one_half  avia-builder-el-27  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-5g713w-303c98170cd006b747f2cf6ea12afbe5 '   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\/Abdullah-Ehlid-Al-Walid-bin-Luli-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-4waxsc-9be768c044ebace1257aa1cf8a70ac05\">\n.flex_column.av-4waxsc-9be768c044ebace1257aa1cf8a70ac05{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4waxsc-9be768c044ebace1257aa1cf8a70ac05 av_one_full  avia-builder-el-29  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-26f9xo-c6bb5dc0f420edea2c79ca8f48edb08e '   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":3568,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18],"tags":[],"class_list":["post-2764","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-kelantan-2021"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2764","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=2764"}],"version-history":[{"count":11,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2764\/revisions"}],"predecessor-version":[{"id":9162,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2764\/revisions\/9162"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/3568"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2764"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2764"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2764"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}