<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 - Nuraina Shuhadah binti Haris Fadilah');	
})


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', 'Nuraina Shuhadah binti Haris Fadilah');
			
				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 - Nuraina Shuhadah binti Haris Fadilah');
})

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', 'Nuraina Shuhadah binti Haris Fadilah');

		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":3024,"date":"2021-11-18T13:34:09","date_gmt":"2021-11-18T05:34:09","guid":{"rendered":"https:\/\/bms.awan.la\/?p=3024"},"modified":"2025-06-20T14:26:33","modified_gmt":"2025-06-20T06:26:33","slug":"nuraina-shuhadah-binti-haris-fadilah","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=3024","title":{"rendered":"Nuraina Shuhadah binti Haris Fadilah"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-r42yc0-ae4e93168482ef10053eaa9ddc1784bb 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-3024'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-qem8sg-972347c245b15b9b318462ef60757833\">\n#top .av-special-heading.av-qem8sg-972347c245b15b9b318462ef60757833{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-qem8sg-972347c245b15b9b318462ef60757833 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-qem8sg-972347c245b15b9b318462ef60757833 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-qem8sg-972347c245b15b9b318462ef60757833 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-qem8sg-972347c245b15b9b318462ef60757833 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-2dgmi8-b9c0260b1914d63b422a4d097eb3c92d\">\n.flex_column.av-2dgmi8-b9c0260b1914d63b422a4d097eb3c92d{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-2dgmi8-b9c0260b1914d63b422a4d097eb3c92d 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-mob2fk-fb6129171b975dfc3811dad690bda6b2\">\n#top .hr.hr-invisible.av-mob2fk-fb6129171b975dfc3811dad690bda6b2{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-mob2fk-fb6129171b975dfc3811dad690bda6b2 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-kw4ig3ts-b45496d01dcdac080ba827a10fb9c85c\">\n#top .avia-icon-list-container.av-kw4ig3ts-b45496d01dcdac080ba827a10fb9c85c .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#635ec6;\n}\n#top .avia-icon-list-container.av-kw4ig3ts-b45496d01dcdac080ba827a10fb9c85c .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-kw4ig3ts-b45496d01dcdac080ba827a10fb9c85c  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-kw4ig3ts-b45496d01dcdac080ba827a10fb9c85c avia-iconlist-animate'>\n<li><div class='iconlist_icon av-kw4iegci-9c840c29e69bb21bdfc8b9c889081a58 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\">Nuraina Shuhadah binti Haris Fadilah<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kw4ig2mv-73382ee70df591f9b7256290dd286351 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\">Perak<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kw4ifgr3-39767aaaa648b0b393e0360079a19d0a 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><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/CV-aina.pdf\" target=\"_blank\" rel=\"noopener\">Nuraina Shuhadah binti Haris Fadilah<\/a><\/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-kuelhc-34467a8d7dcd8a63f950fa66a61d31fe\">\n.flex_column.av-kuelhc-34467a8d7dcd8a63f950fa66a61d31fe{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-kuelhc-34467a8d7dcd8a63f950fa66a61d31fe 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-kwj9fpuw-e1f94de9ccb292020870f19e7d6458f5\">\n.avia-image-container.av-kwj9fpuw-e1f94de9ccb292020870f19e7d6458f5 img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-kwj9fpuw-e1f94de9ccb292020870f19e7d6458f5 .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-kwj9fpuw-e1f94de9ccb292020870f19e7d6458f5 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-5746 avia-img-lazy-loading-not-5746 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NURAINA-1.png\" alt='' title='NURAINA'  height=\"390\" width=\"529\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NURAINA-1.png 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NURAINA-1-300x221.png 300w\" sizes=\"(max-width: 529px) 100vw, 529px\" \/><\/div><\/div><\/div><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-iea0io-500300e8ba67fcb956b137e899c05ef0 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-3024'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-gu3jvk-88db742cdc3234ba5c16d26271a5d39e\">\n.flex_column.av-gu3jvk-88db742cdc3234ba5c16d26271a5d39e{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-gu3jvk-88db742cdc3234ba5c16d26271a5d39e 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-g3ojrk-b261b10c6a3bcfe67f481f8a32903a9c\">\n#top .av-special-heading.av-g3ojrk-b261b10c6a3bcfe67f481f8a32903a9c{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-g3ojrk-b261b10c6a3bcfe67f481f8a32903a9c .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-g3ojrk-b261b10c6a3bcfe67f481f8a32903a9c .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-g3ojrk-b261b10c6a3bcfe67f481f8a32903a9c .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-g3ojrk-b261b10c6a3bcfe67f481f8a32903a9c 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-dxsmeo-85b409b7958dc766296626ea0b5ff79b\">\n#top .hr.hr-invisible.av-dxsmeo-85b409b7958dc766296626ea0b5ff79b{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-dxsmeo-85b409b7958dc766296626ea0b5ff79b 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-kw4iif5l-919219e1090c77155a87636109dce7ed '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\">\u00a0 \u00a0 \u00a0 My body of work derived from family snapshots from my family as my childhood story was differ from others. I come from a broken family where I grew up without a father figure. I was raised by a loving single mother with my siblings. Honestly, knowing the family background is always quite difficult for me as I always question about where I came from, about the role of me in my family drama, the conflict in the family, questioning on my family tree and about being formed as an individual. Sometimes I feel like I know about my family, but I don&#8217;t exactly know everything about it. It is undeniable that I still want to have a complete family just like others and wonder how my life will be different. Still, I dealt with the situation by accepting what I have presently,<\/p>\n<p style=\"text-align: justify;\">I started to do a lot of investigation on my family history and background by tracing back the history and looking for the missing link through the pictures that I have gathered. I came across my family archives and photo albums while cleaning the storage room. Going through the photo albums made me become more eager to know about my family background history and made me want to know the stories behind the pictures.<\/p>\n<p style=\"text-align: justify;\">I started to gather all the family albums and do some searching around. The family photographs that I have gathered have become so much more than a data for me. It became a form of the artwork itself. The photos itself questions how these photos shape my memories and identity besides allowing me to understand, to remember and to know the event that happened in the past.<\/p>\n<p style=\"text-align: justify;\">My idea is to reshape these images of the family members by stitching the photographs itself that serves as a soothing and reconciling tool for me to address the sense of the family members being a stranger or anonymous. My body of work is about accepting something unwelcome in the family drama, also looking at these photos made me start to think about the issue of wanting to know who I am, where I come from and what makes me who I am. For me, it is interesting to look into the process of my chosen medium which is the photographs itself, blended together with the sewing. Combining the sewing and photograph allows me to reinvent the photograph, also as an ode to the loss of my family history.<\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-cxk6j4-bb34089bf7a119e63adcb63ac27230df main_color avia-section-default avia-no-border-styling  avia-builder-el-12  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-3024'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-abzp3k-aabf0a229ca9e434f3999a3d57396508\">\n.flex_column.av-abzp3k-aabf0a229ca9e434f3999a3d57396508{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-abzp3k-aabf0a229ca9e434f3999a3d57396508 av_one_full  avia-builder-el-13  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-8lzeg0-f59c3609e165903640edcfe1dbbd73dd\">\n#top .av-special-heading.av-8lzeg0-f59c3609e165903640edcfe1dbbd73dd{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-8lzeg0-f59c3609e165903640edcfe1dbbd73dd .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-8lzeg0-f59c3609e165903640edcfe1dbbd73dd .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-8lzeg0-f59c3609e165903640edcfe1dbbd73dd .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-8lzeg0-f59c3609e165903640edcfe1dbbd73dd av-special-heading-h2 custom-color-heading  avia-builder-el-14  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >.<span style=\"color: #ffffff;\">.<\/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-7yxa6o-f1d2fcea4a021113cf1752e4b2c44394\">\n#top .hr.hr-invisible.av-7yxa6o-f1d2fcea4a021113cf1752e4b2c44394{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-7yxa6o-f1d2fcea4a021113cf1752e4b2c44394 hr-invisible  avia-builder-el-15  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-kw4ijsqi-80afcd2f007355c443adda5052117982 '   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_4'  class='avia-section av-6jhuy8-7f14b90a9d4d0cd5d92706e3157a75ca main_color avia-section-default avia-no-border-styling  avia-builder-el-17  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-3024'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-3x2ieo-df0d338ac915c87d9b486f617200c024\">\n.flex_column.av-3x2ieo-df0d338ac915c87d9b486f617200c024{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-3x2ieo-df0d338ac915c87d9b486f617200c024 av_one_full  avia-builder-el-18  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-kw4ikby2-6b014f1b21fdd7cb45a3a6ab1c60bb81\">\n#top .av-special-heading.av-kw4ikby2-6b014f1b21fdd7cb45a3a6ab1c60bb81{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-kw4ikby2-6b014f1b21fdd7cb45a3a6ab1c60bb81 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-kw4ikby2-6b014f1b21fdd7cb45a3a6ab1c60bb81 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-kw4ikby2-6b014f1b21fdd7cb45a3a6ab1c60bb81 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-kw4ikby2-6b014f1b21fdd7cb45a3a6ab1c60bb81 av-special-heading-h2 custom-color-heading  avia-builder-el-19  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >PENYATAAN <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-32dtw0-e2b2cca6875c867e4b0cf978828f5219\">\n#top .hr.hr-invisible.av-32dtw0-e2b2cca6875c867e4b0cf978828f5219{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-32dtw0-e2b2cca6875c867e4b0cf978828f5219 hr-invisible  avia-builder-el-20  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-kw4ipbbl-00623d274d62404181b1dc4033e4bd16 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\">My work is a photographic installation and sewing directly into photographs using needle and threads. Inspired by my family history, background and memories in my art practice, I reuse and remake old my family photographs by reshaping it into an artwork by using bed, pillows and blankets. The bed symbolizes a life where begins and ends there, also where memories and dreams usually happen here. Growing up in an unconventional family made me wonder and question about my family background and history, also on my role in my family drama. Prior to questioning the validity of my existence, I started to look into and investigate my family history by gathering historical documents and personal family archives such as family photo albums, family snapshots, and writings. My body of work intricately stitched directly onto the photograph, serves as a soothing tool and ode to the loss of family history.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-4949\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Final-Poster-BMS21.jpg\" alt=\"\" width=\"768\" height=\"1024\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Final-Poster-BMS21.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Final-Poster-BMS21-225x300.jpg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Final-Poster-BMS21-529x705.jpg 529w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_5'  class='avia-section av-ixv34-6f4c29a6f171901c29977f31aa495f6d main_color avia-section-default avia-no-border-styling  avia-builder-el-22  el_after_av_section  el_before_av_video  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-3024'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-fjoxs-eaeab422d395ae496cc91e492d4a4a47\">\n.flex_column.av-fjoxs-eaeab422d395ae496cc91e492d4a4a47{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-fjoxs-eaeab422d395ae496cc91e492d4a4a47 av_one_full  avia-builder-el-23  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-kxip9h6i-6d7e3edd7ed610bb8e4a1d0c857f22f1\">\n#top .av-special-heading.av-kxip9h6i-6d7e3edd7ed610bb8e4a1d0c857f22f1{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-kxip9h6i-6d7e3edd7ed610bb8e4a1d0c857f22f1 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-kxip9h6i-6d7e3edd7ed610bb8e4a1d0c857f22f1 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-kxip9h6i-6d7e3edd7ed610bb8e4a1d0c857f22f1 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-kxip9h6i-6d7e3edd7ed610bb8e4a1d0c857f22f1 av-special-heading-h2 custom-color-heading  avia-builder-el-24  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-2md200-fdf593d043c2cc1699d13d5834aa6421\">\n#top .hr.hr-invisible.av-2md200-fdf593d043c2cc1699d13d5834aa6421{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-2md200-fdf593d043c2cc1699d13d5834aa6421 hr-invisible  avia-builder-el-25  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-kxipaupe-945aea75ddb6bd1bab84c71c12bdbe14 '   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-4003\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20211120_172617_913-1030x773.jpg\" alt=\"\" width=\"1030\" height=\"773\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20211120_172617_913-1030x773.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20211120_172617_913-300x225.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20211120_172617_913-768x576.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20211120_172617_913-705x529.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG_20211120_172617_913.jpg 1080w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-4006\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0044-1030x393.jpg\" alt=\"\" width=\"1030\" height=\"393\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0044-1030x393.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0044-300x114.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0044-768x293.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0044-705x269.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0044-845x321.jpg 845w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0044.jpg 1280w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-4007\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0045-1030x773.jpg\" alt=\"\" width=\"1030\" height=\"773\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0045-1030x773.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0045-300x225.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0045-768x576.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0045-705x529.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0045.jpg 1280w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-4008\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0047-1030x773.jpg\" alt=\"\" width=\"1030\" height=\"773\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0047-1030x773.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0047-300x225.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0047-768x576.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0047-705x529.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0047.jpg 1280w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-4009\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0048-1030x773.jpg\" alt=\"\" width=\"1030\" height=\"773\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0048-1030x773.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0048-300x225.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0048-768x576.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0048-705x529.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211205-WA0048.jpg 1280w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<\/div><\/section>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='after_section_5'  class='main_color av_default_container_wrap 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-3024'><div class='entry-content-wrapper clearfix'>\n<div  class='avia-video av-kxipddhk-229da420c166dd6d3a49058127dc2075 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\/VID-20211205-WA0049.mp4'><video class='avia_video'    preload=\"auto\"  controls id='player_3024_1815464751_1276145557'><source src='https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/VID-20211205-WA0049.mp4' type='video\/mp4' \/><\/video><\/div>\n<div  class='avia-video av-kyy9y0j3-d044122074ea6e0555aae73727b4b287 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\/bf2K9NQz-PU '><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"BAKAT MUDA SEZAMAN 2021 | (ZON UTARA) MENGAIT REALITI - NURAINA SHUHADAH\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/bf2K9NQz-PU?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-cr5zhs-177f0f166b014e49177bb509007d6373 main_color avia-section-default avia-no-border-styling  avia-builder-el-29  el_after_av_video  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-3024'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-agmg6o-271b8870ae095e3c49d17140569a0d65 sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-agmg6o-271b8870ae095e3c49d17140569a0d65\">\n.flex_column.av-agmg6o-271b8870ae095e3c49d17140569a0d65{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-agmg6o-271b8870ae095e3c49d17140569a0d65 av_one_half  avia-builder-el-30  el_before_av_one_half  avia-builder-el-first  first flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-8zb2yo-4c28eabecbe95055af6b09a0574ed7b0 '   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\/Nuraina-Shuhadah-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-6z4hkw-87a7c82c59844751471c04713490477b\">\n.flex_column.av-6z4hkw-87a7c82c59844751471c04713490477b{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-6z4hkw-87a7c82c59844751471c04713490477b av_one_half  avia-builder-el-32  el_after_av_one_half  el_before_av_one_full  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-5e3l9c-40d9fa06db8b4d28b38d6c9f47ac1db0 '   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\/Nuraina-Shuhadah-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-4rren4-86299e5a2a5f815ea056586681d246a4\">\n.flex_column.av-4rren4-86299e5a2a5f815ea056586681d246a4{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4rren4-86299e5a2a5f815ea056586681d246a4 av_one_full  avia-builder-el-34  el_after_av_one_half  avia-builder-el-last  first flex_column_div av-zero-column-padding  column-top-margin'     ><section  class='av_textblock_section av-20ksz4-4789b4daced3c1c25160f9e3cf1f2541 '   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":3491,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[34,24],"tags":[56],"class_list":["post-3024","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bms21","category-perak-2021","tag-56"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/3024","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=3024"}],"version-history":[{"count":16,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/3024\/revisions"}],"predecessor-version":[{"id":8813,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/3024\/revisions\/8813"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/3491"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3024"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3024"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3024"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}