Subscribe Us

Header Ads

HTML tag list 2020

HTML tag list :-

showtutorialbengali.blogspot.com

৩২।  <td> table data create করা হয়  ।

৩৩ ।  <th> table heading create করা হয়  ।

৩৪।  <img/> ছবি  আনতে এই ট্যাগ টি কাজে লাগে ।

৩৫ ।  <video src="video.mp4" </video>  ভিডিও  আনতে এই ট্যাগ টি কাজে লাগে ।

৩৬ ।  <hr> horizontal line create করা  হয়  ।

৩৭ ।  <marquee> চলন্ত লেখা create করার জন্য এই ট্যাগটি ব্যবহার করা হয় ।

৩৮ । <body bgcolor="red" </body> এই  ট্যাগ টির  সাহায্যে বডির সব টা রং করা হয় ।

৩৯ ।  <q> text এর quotation দিতে কাজে লাগে ।

৪০ ।  <sup> একটি  text এর power এ অন্য text রাখতে পারে ।

৪১ ।  <sub> একটি text এর base অন্য text রাখতে পারে ।



প্রত্যেক ট্যাগ খুবই  important  খুব  ভালো ভাবে follow করুন  ।।


showtutorialbengali.blogspot.com


একটি example দেওয়া হলো  :-


<html>

<body>

<table border="2">

<tr>

<th>Name</th>

<th>Address</th>


<th>Age</th>

</tr>

<tr>

<td>Amal Das</td>

<td>Taki</td>

<td>50</td>

</tr>
<tr>
<td>Sudip Pal</td>
<td>Habra</td>
<td>22</td>
</tr>
</table>
<br><br>
<form>
Username:<br>
<input type="text" name="uname">
<br>
Password:<br>
<input type="password" name="pwd">
<br><br>
       <textarea rows="5" cols="50" name="description" placeholder="enter _desc">
       </textarea><br>
<input type="submit" value="submit">
<br><br>
<input type="checkbox" name="maths" value="on">Maths
<input type="checkbox" name="physics" value="on">Physics
<br><br>
<input type="radio" name="Gender" value="Male">Male
<input type="radio" name="Gender" value="Female">Female
<br><br>
<select name="dropdown">
<option value="maths" selected>Maths</option>
<option value="phy">Physics</option>
<option value="chem">Chemistry</option>
<br><br>
<input type="file" name="fileupload" accept="image/*"/>
<input type="submit" value="submit">
</form>
</body>
</html>


"Follow this example some important tag use here"






একটি মন্তব্য পোস্ট করুন

1 মন্তব্যসমূহ