2.37.1 HTML Form Controls

২.৩৭.১ HTML প্ৰপত্ৰ নিয়ন্ত্ৰণসমূহ

There are different types of form controls that you use to collect data using HTML form-

HTML form- ব্যৱহাৰ কৰি তথ্য সংগ্ৰহ কৰিবলৈ আপুনি ব্যৱহাৰ কৰা বিভিন্ন ধৰণৰ ফৰ্ম নিয়ন্ত্ৰণ আছে।

Text Input Controls

লিখনী ইনপুট নিয়ন্ত্ৰণসমূহ

Check boxes Controls

নিয়ন্ত্ৰণসমূহ বাকচসমূহ চেক কৰক

Radio Box Controls

ৰেডিঅ’ বক্স নিয়ন্ত্ৰণ

Select Box Controls

বাকচ নিয়ন্ত্ৰণসমূহ নিৰ্ব্বাচন কৰক

File upload Control

ফাইল আপলোড নিয়ন্ত্ৰণ

Submit and Reset Button

জমা দিয়ক আৰু পুনৰায় সেট কৰক বুটাম

Text Input Controls

লিখনী ইনপুট নিয়ন্ত্ৰণসমূহ

There are there of text used on forms-

প্ৰ-পত্ৰত ব্যৱহৃত লিখনীৰ আছে-

Single-line text input controls- This controls is used for items the require onle one line of user input, such as search boxes or names. They are created using HTML <input> tag.

একক-শাৰী লিখনী ইনপুট নিয়ন্ত্ৰণসমূহ- এই নিয়ন্ত্ৰণসমূহ ব্যৱহাৰকাৰী ইনপুটৰ মাত্ৰ এটা শাৰীৰ প্ৰয়োজন হোৱা বস্তুসমূহৰ বাবে ব্যৱহাৰ কৰা হয়, যেনে সন্ধান বাকচ বা নাম। HTML টেগ ব্যৱহাৰ কৰি সৃষ্টি কৰা হয়।

Example

উদাহৰণ

Output

Password input controls- This is also a single-line text input but it marks the character as soon as a user enters it. They are also created using using HTML <INPUT> Tag.

পাছৱৰ্ড ইনপুট নিয়ন্ত্ৰণ- এইটোও এটা একক-শাৰীৰ লিখনী ইনপুট কিন্তু ই ব্যৱহাৰকাৰীয়ে প্ৰৱেশ কৰাৰ লগে লগে আখৰটো চিহ্নিত কৰে। HTML Tag ব্যৱহাৰ কৰিও ইয়াক সৃষ্টি কৰা হয়।

Example

উদাহৰণ

A form enter the password which is not visible to the user is password field control.

এটা প্ৰপত্ৰ গুপ্তশব্দ দিয়ক যিটো ব্যৱহাৰকাৰীৰ বাবে দৃশ্যমান নহয় সেয়া হৈছে পাছৱৰ্ড ক্ষেত্ৰ নিয়ন্ত্ৰণ।

Output

Multi- line text input controls- This is used when the user is required to give details that may be longer then a single sentence. Multi-line input controls are created using HTML < Textarea> lag.

বহু-শাৰী লিখনী ইনপুট নিয়ন্ত্ৰণ- এইটো ব্যৱহাৰ কৰা হয় যেতিয়া ব্যৱহাৰকাৰীয়ে এটা বাক্যতকৈ দীঘল হ’ব পৰা বিৱৰণ দিব লাগে। বহু-শাৰী ইনপুট নিয়ন্ত্ৰণসমূহ HTML < Textarea> lag ব্যৱহাৰ কৰি সৃষ্টি কৰা হয়।

Example

উদাহৰণ

A form to enter multi-line text.

বহু-শাৰীৰ লিখনী প্ৰৱেশ কৰিবলৈ এটা প্ৰপত্ৰ।

Output

Checkboxes are used to let the user select one or more options form a per- defined set of optins. Checkbox input controls using the ” input” element with a type attribute having value as ”checkbox.

ব্যৱহাৰকাৰীক এক বা একাধিক বিকল্প বাছনি কৰিবলৈ অপ্টিনৰ প্ৰতি-নিৰ্ধাৰিত ছেট এটা গঠন কৰিবলৈ চেকবক্স ব্যৱহাৰ কৰা হয়। চেকবক্স ইনপুট নিয়ন্ত্ৰণসমূহ ”চেকবক্স’ হিচাপে মূল্য থকা এটা প্ৰকাৰ বৈশিষ্ট্যৰ সৈতে ” ইনপুট” উপাদান ব্যৱহাৰ কৰি।

Example

উদাহৰণ

A form to select hobbies.

ৰুচি বাছনি কৰাৰ বাবে এক প্ৰপত্ৰ।

Output