নির্বাচিত ব্যবহার করুন৷ HTML-এ পৃষ্ঠা লোড হওয়ার সময় বিকল্পটি পূর্ব-নির্বাচিত হওয়া উচিত তা নির্দিষ্ট করার জন্য বৈশিষ্ট্য। আপনি নির্বাচিত বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন বৈশিষ্ট্য −
উদাহরণ
<!DOCTYPE html> <html> <head> <title>HTML selected attribute</title> </head> <body> <p>Here's the list of subjects. Select any one:</p> <form> <select name = "dropdown"> <option value = "Computer Architecture" selected>Computer Architecture</option> <option value = "Java">Java</option> <option value = "Discrete Mathematics">Discrete Mathematics</option> </select> </form> </body> </html>