<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 - Nayli Syazwani binti Zain Ariffin, Ahmad Izzan Qistan Kamarulzaman &#038; Nurhidayatul Aina');	
})


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', 'Nayli Syazwani binti Zain Ariffin, Ahmad Izzan Qistan Kamarulzaman &#038; Nurhidayatul Aina');
			
				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 - Nayli Syazwani binti Zain Ariffin, Ahmad Izzan Qistan Kamarulzaman &#038; Nurhidayatul Aina');
})

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', 'Nayli Syazwani binti Zain Ariffin, Ahmad Izzan Qistan Kamarulzaman &#038; Nurhidayatul Aina');

		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":2993,"date":"2021-11-18T12:04:14","date_gmt":"2021-11-18T04:04:14","guid":{"rendered":"https:\/\/bms.awan.la\/?p=2993"},"modified":"2025-07-09T21:29:10","modified_gmt":"2025-07-09T13:29:10","slug":"muhammad-fitri-bin-ali-nayli-syazwani-binti-zain-ariffin-ahmad-izzan-qistan-kamarulzaman","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=2993","title":{"rendered":"Nayli Syazwani binti Zain Ariffin, Ahmad Izzan Qistan Kamarulzaman &#038; Nurhidayatul Aina"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-k69gvl-09b4d824c98b80d887d8ed3d9eeba0b1 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-2993'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-iu3xgx-0c717b55115dc2131c132b94d2c9d86a\">\n#top .av-special-heading.av-iu3xgx-0c717b55115dc2131c132b94d2c9d86a{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-iu3xgx-0c717b55115dc2131c132b94d2c9d86a .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-iu3xgx-0c717b55115dc2131c132b94d2c9d86a .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-iu3xgx-0c717b55115dc2131c132b94d2c9d86a .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-iu3xgx-0c717b55115dc2131c132b94d2c9d86a 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-hda4yp-3383b87658c4d8bcb251c134683509a3\">\n.flex_column.av-hda4yp-3383b87658c4d8bcb251c134683509a3{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-hda4yp-3383b87658c4d8bcb251c134683509a3 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-g5d7dt-48d71909d581a47b57a7f17aed9a8cbf\">\n#top .hr.hr-invisible.av-g5d7dt-48d71909d581a47b57a7f17aed9a8cbf{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-g5d7dt-48d71909d581a47b57a7f17aed9a8cbf 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-kw4ff7n8-99a546f530ef24f6a45687821a2186a4\">\n#top .avia-icon-list-container.av-kw4ff7n8-99a546f530ef24f6a45687821a2186a4 .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#635ec6;\n}\n#top .avia-icon-list-container.av-kw4ff7n8-99a546f530ef24f6a45687821a2186a4 .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-kw4ff7n8-99a546f530ef24f6a45687821a2186a4  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-kw4ff7n8-99a546f530ef24f6a45687821a2186a4 avia-iconlist-animate'>\n<li><div class='iconlist_icon av-kw4fc4m0-1078a137595cb54fd317f479ed94028b avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue80a' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: NAMA: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >NAMA: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><ul>\n<li><span class=\"nama\">Nayli Syazwani binti Zain Ariffin\u00a0 <\/span><\/li>\n<li><span class=\"nama\">Ahmad Izzan Qistan Kamarulzaman<\/span><\/li>\n<li><span style=\"color: #ffffff;\">Nurhidayatul Aina<\/span><\/li>\n<\/ul>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kw4fclna-032a17993f7b7cf7b573001b81d511df 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\">Melaka<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kw4feve7-abd057ddc2cf33e3f8da5f1954c19a61 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue840' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: BIODATA PESERTA:\"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >BIODATA PESERTA:<\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><ul>\n<li>Nayli Syazwani binti Zain Ariffin<\/li>\n<li><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/QISTAN-CV.pdf\" target=\"_blank\" rel=\"noopener\">Ahmad Izzan Qistan Kamarulzaman<\/a><\/li>\n<\/ul>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<\/ul><\/div><\/p><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-e679g1-f79554d5427f15e1477468f1b0fce1df\">\n.flex_column.av-e679g1-f79554d5427f15e1477468f1b0fce1df{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-e679g1-f79554d5427f15e1477468f1b0fce1df 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-kw4fbgqb-9e2f7b7d1f9c6c3aa3154189039cda50\">\n.avia-image-container.av-kw4fbgqb-9e2f7b7d1f9c6c3aa3154189039cda50 img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-kw4fbgqb-9e2f7b7d1f9c6c3aa3154189039cda50 .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-kw4fbgqb-9e2f7b7d1f9c6c3aa3154189039cda50 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-4716 avia-img-lazy-loading-not-4716 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI.png\" alt='' title='NAYLI'  height=\"390\" width=\"900\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI.png 900w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-300x130.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-768x333.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-705x306.png 705w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/><\/div><\/div><\/div><\/div><\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-caarwh-f0583b63a1a83fac3342c87ee2dd9b85 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-2993'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-aakwdd-b4b5c6ae8bf34388ed6910b762f6e72f\">\n.flex_column.av-aakwdd-b4b5c6ae8bf34388ed6910b762f6e72f{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-aakwdd-b4b5c6ae8bf34388ed6910b762f6e72f 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-3bg5d-562d81f53832bb2580944d3ecf650442\">\n#top .av-special-heading.av-3bg5d-562d81f53832bb2580944d3ecf650442{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-3bg5d-562d81f53832bb2580944d3ecf650442 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-3bg5d-562d81f53832bb2580944d3ecf650442 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-3bg5d-562d81f53832bb2580944d3ecf650442 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-3bg5d-562d81f53832bb2580944d3ecf650442 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-pqui9-e63a63df48b481e850e741e05f74c80c\">\n#top .hr.hr-invisible.av-pqui9-e63a63df48b481e850e741e05f74c80c{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-pqui9-e63a63df48b481e850e741e05f74c80c 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-kxus4hnr-1af2879f7ee253446794cb362b31f79b '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p>Rejuvenating the land Artefacts- Exploring the Megalith\/Menhir formation<\/p>\n<p>1. a) Proposal and artwork rational<\/p>\n<p>Introduction<\/p>\n<p style=\"text-align: justify;\">This proposal is an effort towards recalling historical aspect of the location. As I am from Melaka, I decided to choose a location that relates to my hometown and where I live at present. As BMS 2021 is giving this opportunity to create work from location, this proposal is collaboratively gathered from few friends around Melaka.<\/p>\n<p style=\"text-align: justify;\">Melaka Pindah is a place situated in Alor Gajah district. It is a place that has now developing its population, economic and agricultural mostly oil palm plantations &amp; live-stock. Some settlers come from other places but mostly they are the people from this area who livel; by many generations. I try to relate my own ideation of works towards this proposal. Many spots of historical evidence are partially known by its local people in Melaka Pindah. During the era of Portugese and British colonization Melaka Pindah is believing to be a place amongst the Malay warriors and few royals who gathered secretly to this area, moving and hiding from the colonizers. One of the researchers who have written a book about Kg Melaka Pindah is Mohd Syukry bin Abdullah (PERZIM Curator) in his research entitled &#8216;Kampung Melaka Pindah Dalam hubungan Kesultanan Melayu Melaka&#8217; and he stated:<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-4721\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-2.png\" alt=\"\" width=\"2440\" height=\"1538\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-2.png 2440w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-2-300x189.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-2-1030x649.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-2-768x484.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-2-1536x968.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-2-2048x1291.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-2-1500x945.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-2-705x444.png 705w\" sizes=\"(max-width: 2440px) 100vw, 2440px\" \/> <img decoding=\"async\" class=\"alignnone size-full wp-image-4722\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-3.png\" alt=\"\" width=\"1476\" height=\"1106\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-3.png 1476w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-3-300x225.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-3-1030x772.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-3-768x575.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/NAYLI-3-705x528.png 705w\" sizes=\"(max-width: 1476px) 100vw, 1476px\" \/><\/p>\n<p style=\"text-align: justify;\">&#8220;Namun begitu, masyarakat tempatan percaya Kampung Melak Pindahini wujud apabila berlaku perpindahan besar-besaran pembesar-pembesar Istana Kesultanan Melayu Melaka ekoran serangan Portugis pada 1511. Seperti yang tercatat dalam Sejarah Melayu, para pembesar telah berundur ke Bentayan, Muar dan berpecah mengikut haluan masing-masing iaitu Bendahara Tepok ke Lubuk Batu, dan Sultan Mahmud berundur ke Kampar, Sumatera. Dengan itu, para pembesar dan rakyat yang lain menyelamatkan diri dengan memudiki Sungai Melaka sehingga ke pedalaman kawasan tersebut. Keadaan muka bumi yang berbukit dan beralun membolehkan rakyat menyelamatkan diri dari serangan bertali arus dari pihak Portugis. Atas kebijaksanaan para pembesar dalam mengatur strategi,ramai rakyat Melaka dapat diselamatkan dan seterusnya mendirikan penempatan di Kawasan tersebut.<\/p>\n<p style=\"text-align: justify;\">Kawasan sekitar Kampung Melaka Pindah ini telah dijadikan penempatan yang Makmur oleh rakyat Melaka yang telah berundur dikawasan tersebut. Bukit yang tinggi mengelilingi kampung ini seperti Bukit Panchor sangat sesuai dijadikan kubu pertahanan semulajadi untuk mengelakkan serangan dari Portugis Melaka.&#8221;<\/p>\n<p style=\"text-align: justify;\">Historical Forms &amp; Evidences<\/p>\n<p style=\"text-align: justify;\">Some of the prominent marks of historical form or artifacts around Melaka Pindah are the &#8216;megalithic site&#8217;, some were believed to be tombstone, landmarks or graveyard of the melaka warriors or rulers during past times. I have a chance to interview among old folks\/villagers and I went to visit the megalith of Datuk Paduka Seri Maharaja Lela situated near community center in Melaka Pindah.<\/p>\n<p>Megalith as Main Form\/ ideation<\/p>\n<p style=\"text-align: justify;\">Megalith form is commonly known as pre-historic stone, usually used during Neolithic Period as monument to mark places or grave of important people during ancient-times. Why is it significant to me? I have been researching about arch-form in my degree-studies and this time I would like to explore further with &#8216;megalith&#8217; form to develop the idea for my arch design.<\/p>\n<p style=\"text-align: justify;\">I was searching various location until I found a discussion with my former lecturer (Dr Sharmiza &#8211; Abu Hassan) and she offered me to try out her site that is within a location of oil palm plantation near the community center of Melaka Pindah. The land was recently cleared, facing hill and interestingly surrounded with beautiful panoramic landscape. After few visits and sharing ideas, she agreed to offer the site for me to propose my ideation.<\/p>\n<p style=\"text-align: justify;\">This is one of the megalithic stone which are a tomb of Malay warrior, Datuk Maharajalela in front of Balai raya Kampung Melaka Pindah.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-4866\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.15.53.jpeg\" alt=\"\" width=\"1080\" height=\"524\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.15.53.jpeg 1080w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.15.53-300x146.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.15.53-1030x500.jpeg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.15.53-768x373.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.15.53-705x342.jpeg 705w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-5gtywh-d1ac76ae10d9f07c3ea1e423c341b91d 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-2993'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-3l5eup-4e0b4ca7ec105c0dc628576557e5130a\">\n.flex_column.av-3l5eup-4e0b4ca7ec105c0dc628576557e5130a{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-3l5eup-4e0b4ca7ec105c0dc628576557e5130a 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-kw4fhwyg-8f3bd5fdcde32c4686752fccecc48b2a\">\n#top .av-special-heading.av-kw4fhwyg-8f3bd5fdcde32c4686752fccecc48b2a{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-kw4fhwyg-8f3bd5fdcde32c4686752fccecc48b2a .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-kw4fhwyg-8f3bd5fdcde32c4686752fccecc48b2a .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-kw4fhwyg-8f3bd5fdcde32c4686752fccecc48b2a .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-kw4fhwyg-8f3bd5fdcde32c4686752fccecc48b2a av-special-heading-h2 custom-color-heading  avia-builder-el-14  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-2m6729-7ddb1de0aed719a305b0567b3de05eeb\">\n#top .hr.hr-invisible.av-2m6729-7ddb1de0aed719a305b0567b3de05eeb{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-2m6729-7ddb1de0aed719a305b0567b3de05eeb 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-kw4fidbn-162abcc45e18ff29ba5e1b3984623092 '   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-4867\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25.jpeg\" alt=\"\" width=\"1080\" height=\"810\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25.jpeg 1080w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-300x225.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-1030x773.jpeg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-768x576.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-705x529.jpeg 705w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/><\/p>\n<p style=\"text-align: justify;\">This work derives from the existence of megalith remains in Melaka Pindah which proved that there was a settlement there in history. The negative and positive shape of the work is based on the shape of megalith stone\/menhir. Since the megalith stone are always in line and pairs, the composition proposed will also be in modular forms (4 pieces).<\/p>\n<p style=\"text-align: justify;\"><img decoding=\"async\" class=\"alignnone size-full wp-image-4868\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.24.jpeg\" alt=\"\" width=\"810\" height=\"1080\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.24.jpeg 810w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.24-225x300.jpeg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.24-773x1030.jpeg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.24-768x1024.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.24-529x705.jpeg 529w\" sizes=\"(max-width: 810px) 100vw, 810px\" \/><\/p>\n<p style=\"text-align: justify;\">The usage of metal grid \/bamboo structures is the suitable method due to the light weight material as it is practical familiar process for me to construct. Besides, it is a see-through material that people will be able to see the other side of it despite of the overlapping line and shape. The transparency of it shows glimpse of memory about the past history and create interesting element of linear stuctures.<\/p>\n<p style=\"text-align: justify;\"><img decoding=\"async\" class=\"alignnone size-full wp-image-4869\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-2.jpeg\" alt=\"\" width=\"810\" height=\"1080\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-2.jpeg 810w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-2-225x300.jpeg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-2-773x1030.jpeg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-2-768x1024.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-2-529x705.jpeg 529w\" sizes=\"(max-width: 810px) 100vw, 810px\" \/><\/p>\n<p style=\"text-align: justify;\">As for the aluminum reflected plate, it can reflect light which improve plant growth and act as animals\u2019 repellent from coming to the artwork or disturbing the site. The red bauxite stone that will be used in the wire mesh with the usage of gabion technique is going to be an experiment naturally related to this particular place and it is one of the ancient stone that were used in the history of fortress of Melaka such as A\u2019Famosa .<\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4'  class='avia-section av-5l97xd-86c3285c06df11149e7eafa9e795a825 main_color avia-section-default avia-no-border-styling  avia-builder-el-17  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-2993'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-4wjy1d-904f562da0e5819fa2ed76e040a85363\">\n.flex_column.av-4wjy1d-904f562da0e5819fa2ed76e040a85363{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4wjy1d-904f562da0e5819fa2ed76e040a85363 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-kxios7ai-0e74a06b578ed7177672636f9009cdf8\">\n#top .av-special-heading.av-kxios7ai-0e74a06b578ed7177672636f9009cdf8{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-kxios7ai-0e74a06b578ed7177672636f9009cdf8 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-kxios7ai-0e74a06b578ed7177672636f9009cdf8 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-kxios7ai-0e74a06b578ed7177672636f9009cdf8 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-kxios7ai-0e74a06b578ed7177672636f9009cdf8 av-special-heading-h2 custom-color-heading  avia-builder-el-19  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-329r9d-27e75b2e885058af257886c02d2298ec\">\n#top .hr.hr-invisible.av-329r9d-27e75b2e885058af257886c02d2298ec{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-329r9d-27e75b2e885058af257886c02d2298ec 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-kxioszef-8f417c781c3634425b969cac570a9874 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone wp-image-4870 size-full\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-1.jpeg\" alt=\"\" width=\"810\" height=\"1080\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-1.jpeg 810w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-1-225x300.jpeg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-1-773x1030.jpeg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-1-768x1024.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.25-1-529x705.jpeg 529w\" sizes=\"(max-width: 810px) 100vw, 810px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-3991\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211126-WA0008-773x1030.jpg\" alt=\"\" width=\"773\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211126-WA0008-773x1030.jpg 773w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211126-WA0008-225x300.jpg 225w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211126-WA0008-768x1024.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211126-WA0008-529x705.jpg 529w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/IMG-20211126-WA0008.jpg 960w\" sizes=\"(max-width: 773px) 100vw, 773px\" \/> <img decoding=\"async\" class=\"alignnone wp-image-4871 size-full\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.26.jpeg\" alt=\"\" width=\"1000\" height=\"750\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.26.jpeg 1000w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.26-300x225.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.26-768x576.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/WhatsApp-Image-2022-01-01-at-15.17.26-705x529.jpeg 705w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-3993\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1212_070248.png\" alt=\"\" width=\"675\" height=\"664\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1212_070248.png 675w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1212_070248-300x295.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1212_070248-80x80.png 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1212_070248-36x36.png 36w\" sizes=\"(max-width: 675px) 100vw, 675px\" \/><\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-ky368zrz-f6b6c60eb740a683eba8408af7669dc3 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><a href=\"https:\/\/www.instagram.com\/tv\/CXxzszbhGwK\/?utm_medium=copy_link\">https:\/\/sites.google.com\/view\/bmsmelakapindah\/home<\/a><\/p>\n<p><a href=\"https:\/\/www.instagram.com\/tv\/CXxzszbhGwK\/?utm_medium=copy_link\">https:\/\/www.instagram.com\/tv\/CXxzszbhGwK\/?utm_medium=copy_link<\/a><\/p>\n<p>https:\/\/m.facebook.com\/story.php?story_fbid=3189524377950950&#038;id=1637357371<\/p>\n<\/div><\/section>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='after_section_4'  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-2993'><div class='entry-content-wrapper clearfix'>\n<div  class='avia-video av-ky76zsax-da4b1ec74d7a4ea2b10b5e7059fafb00 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\/dpPYhExX_EY'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"BAKAT MUDA SEZAMAN 2021 | (ZON SELATAN) BATU HIDUP - NAYLI SYAZWANI\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/dpPYhExX_EY?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-d60r0h-ea9e970e4ba487f6207d76b2719fb4d4 main_color avia-section-default avia-no-border-styling  avia-builder-el-24  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-2993'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-bb2rr5-336161f6f6fdc3acb9539a90645aaf57 sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-bb2rr5-336161f6f6fdc3acb9539a90645aaf57\">\n.flex_column.av-bb2rr5-336161f6f6fdc3acb9539a90645aaf57{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-bb2rr5-336161f6f6fdc3acb9539a90645aaf57 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-8q0xm9-5eb4aceb57296c82d8e6e4ef77392b0c '   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\/artist-a-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-7ickoh-fdf249c545e78a3a2b38d2aff2befe05\">\n.flex_column.av-7ickoh-fdf249c545e78a3a2b38d2aff2befe05{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-7ickoh-fdf249c545e78a3a2b38d2aff2befe05 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-5fdvwh-5f9580f409965224d01ac0fb59691a77 '   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\/artist-a-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-4071b5-c9ffff5466837ba672a7b10e55b76381\">\n.flex_column.av-4071b5-c9ffff5466837ba672a7b10e55b76381{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4071b5-c9ffff5466837ba672a7b10e55b76381 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-2c2on5-ae90faf4330e63ae89afa8a535e3246d '   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":4136,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[34,19],"tags":[56],"class_list":["post-2993","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bms21","category-melaka-2021","tag-56"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2993","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=2993"}],"version-history":[{"count":23,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2993\/revisions"}],"predecessor-version":[{"id":3989,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2993\/revisions\/3989"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/4136"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2993"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2993"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2993"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}