<legend>
: HTML ফিল্ড সেট লেজেন্ড উপাদান (The HTML Field Set Legend element)। এই ট্যাগটি <fieldset>
উপাদানের ক্যাপশন সংজ্ঞায়িত করতে ব্যবহৃত হয়। বাক্য গঠন. <legend>
টেক্সট </legend>
। HTML ফিল্ড সেট লেজেন্ড উপাদান (The HTML Field Set Legend element) ট্যাগ সম্পর্কে বিস্তারিত নিচে দেওয়া হল।
Example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML MASTER JHUTANDA</title>
<!--https://jhutanda.com-->
<!--https://github.com/jhutanda-->
</head>
<body>
<h1>legend</h1>
<fieldset>
<legend>This is legend</legend>
<label for="name">Name:</label><br>
<input type="text"><br>
<label for="Mobile">Mobile Number:</label><br>
<input type="number"><br><br>
<input type="submit">
</fieldset>
<style>
fieldset{
width: 200px;
padding: 10px;
border-color: blue;
}
legend{
background-color: blue;
color: white;
padding: 5px;
}
</style>
</body>
</html>