HTML_Part37_FORM ও FORM এর Attributes
FORM
ওয়েব পেজের মাধ্যমে ইনফরমেশন সংগ্রহের জন্য ফর্ম ব্যবহার করা হয়।
ব্যবহারকারীরা ফর্মের মাধ্যমে বিভিন্ন ইনফরমেশনসহ ফর্ম পূরন করে নির্দিষ্ট
গন্তব্যে প্রেরণ করেন। অনলাইনে এই ফর্ম পূরনের বিশেষ ব্যবস্থ্যা করার জন্যই ফর্মের
প্রচলন হয়েছে। এই ট্যাগের ফরম্যাট হচ্ছেঃ
<form>…………………........………</form>
FORM এর Attributes
ফর্মেও বিভিন্ন ধরনের Attributes ব্যবহার করে Text Box, Button ইত্যাদি তৈরী করা যায়।
Input ট্যাগ ও Text Type
Input ট্যাগ দ্বারা টেক্সট বক্স এনে এক লাইন টেক্সট লেখার জায়গা তৈরী করা যায়
যেমন;
<input type=text
name=textbox1 size=number> text(for label)
এছাড়াও Input ট্যাগ দ্বারা SUBMIT ও RESET বাটন তৈরী করা যায় ফরম্যাট যেমন:
<input
type=submit> <input type=reset>
নিচের মত কোডিংসহ একটি HTML ফাইল তৈরী করুন।
<!DOCTYPE html>
<html>
<head>
<title> text field and submit button </title>
</head>
<body>
<form>
<input type="text" name="FirstName"
value="Bappi" > Type your First Name: <br>
<input type="text" name="LastName"
size="30"> Type your Last Name: <br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>
ব্রাউজার দিয়ে খুললে
নিন্মেক্ত ফলাফল পাওয়া যাবে।
TEXTAREA দ্বারা এক লাইন
টেক্সটের বদলে অনেক লাইন টেক্সট লেখার জায়গা তৈরী করা যায় যেমন
<textarea
rows="number"columns="number"> ..... </textarea>
PASSWORD টাইপ টেক্সটের
ক্ষেত্রে, পাসওর্য়াড লেখার জায়গা দেওয়া হয়। এটি মূলত INPUT এলিমেন্টের Attributes. এটির ফরম্যাট হচ্ছেঃ
<input
type=passwOrd>
নিচের মত কোডিংসহ একটি HTML ফাইল তৈরী করুন।
<!DOCTYPE html>
<html>
<head>
<title> text field and submit button </title>
</head>
<body>
<form>
<input type="text" name="FirstName"
value="Bappi" > Type your First Name <br />
<input type="text" name="LastName"
size="30"> Type your Last Name <br />
Type your Address <textarea " NAME = "C1" Rows
= "5" COLS = "40"></textarea> <br />
Age<input type="password"
name="age"><br />
<input type="reset" value="Reset">
<input type="submit" value="Submit">
</form>
</body>
</html>
ব্রাউজার দিয়ে খুললে
নিন্মেক্ত ফলাফল পাওয়া যাবে।
বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।
Writer: Bappi Ashraf
Published By: Gyankosh Prokashani
Amount of Pages: 464
First Publish: October-2004
Last Edition: We've February-2015 edition. Future edition may be existed!
Book Price: BDT 350 (30% Discount)
The
writer of this book has told that he has written this book with the
concept of "teach yourself". On the other hand, Web Design is a thing which is
interesting to learn. He has also told that the book is full of fan and
enjoyment so that a person can learn Web Design by himself by playing with
the example projects of this book. Book's CD Link below...
RELATED POST LINKS BELOW ********************************************