Sunday, June 3, 2018

(HTML_3) Table-Input-Select-Radio Tags

Table Tag Code Format: 

<table>
<tr>
<td>, Data Name </td>
<td>, Data Name </td>
</tr>
</table>

* Border tag: <table border= “1”>
* Heading Tag: <th>Name</th>

Example: 



Table-Tag-Code

















Table-Tag-Example










Input Tag:
<input/>
<input type="text"/>
<input type="password"/>
<input type="text" value="my name"/>
<input type="password" placeholder="your password"/>
<input type="email">
<input type="url">
<input type="file">

Input-Tag-Code


Input-Tag-Example






Select Tag:

<Select>
<Option>Option Name </option>
</select>


<Select>
              
<Option>Day</option>
<Option>Satuarday</option>
<Option>Sunday</option>
<Option>Monday</option>

</select>

<Select>
<Option>Month</option>
<Option>January</option>
<Option>February</option>
<Option>March</option>

</select>

Select-Tag-Code

Select-Tag-Example











Radio Tag: 

<input type="radio"/>


<input type="radio"/>
<p>Female</p>
<input type="radio"/>
<p>male</p>


<p><input type="radio"/>Female</p>
<p><input type="radio"/>Male</p>


<p>
<input id="femel" type="radio"/>
<label for="female">Female<label/>
</p>

<p>
<input id="male" type="radio"/>
<label for="male">Male<label/>
</p>

Radio-Tag-Example

0 comments:

Post a Comment

Comments