HTML প্যাটার্ন অ্যাট্রিবিউট একটি রেগুলার এক্সপ্রেশনকে সংজ্ঞায়িত করে যার বিপরীতে HTML উপাদানের মান একটি HTML নথিতে মিলে যায়।
সিনট্যাক্স
নিচের সিনট্যাক্স −
<input pattern=”regular expression”>
আসুন HTML প্যাটার্ন অ্যাট্রিবিউট -
এর একটি উদাহরণ দেখিউদাহরণ
<!DOCTYPE html>
<html>
<style>
body {
color: #000;
height: 100vh;
background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
text-align: center;
}
input[type='password'] {
width: 300px;
padding: 8px 16px;
border: 2px solid #fff;
background: transparent;
border-radius: 20px;
display: block;
margin: 1rem auto;
outline: none;
}
.btn {
background: #db133a;
border: none;
height: 2rem;
border-radius: 20px;
width: 330px;
display: block;
color: #fff;
outline: none;
cursor: pointer;
margin: 1rem auto;
}
::placeholder {
color: #000;
}
</style>
<body>
<h1>HTML pattern attribute Example</h1>
<form action="">
<input type="password" placeholder="Enter your account password" required pattern=".{8,}">
<input type="submit" value="Submit" class="btn" onclick='check()'>
</form>
<div class="show"></div>
<script>
function check() {
if (document.querySelector("input[type='password']").value.length < 8) {
document.querySelector(".show").innerHTML = 'Please enter a password of more than or equal to 8 characters.'
};
}
</script>
</body>
</html> আউটপুট

একটি পাসওয়ার্ড লিখুন যা 8 অক্ষরের কম এবং তারপরে “জমা দিন এ ক্লিক করুন সতর্কতা বার্তা দেখানোর জন্য ” বোতাম৷
৷
