Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

 

MIS Practical
<figure>
<img src="mosque.jpg" Width="550" Height="500">
<figcaption> This is the mosque of haram</figcaption>
</figure>

<form>
<table for="username">Departure date:</table>
<input type="date" name="departure"/>
<input type="submit" value="Submit"/>
</form>

<table>Age:<input type="text" name="age"/></table>


<br/ >
<p>Gender:
<br/>
<input id="male" type="radio" name="gender">
<table for "male">Male</table>
<input id="female" type="radio" name="gender">
<table for "female">Female</table>
</p>

<form>
<p>Which device do you listen to music on?</p>
<select name="devices">
<option value="ipod">ipod</option>
<option value="radio">Radio</option>
<option value="computer">Computer</option>
</select>
</form>

<table width="400" cellpadding="10" cellspacing="5">


<tr>
<th width="150"></th>
<th>Withdraw</th>
<th>Credit</th>
<th>Balance</th>
</tr>
<tr>
<th>January</th>
<td>250.00</td>
<td>660.00</td>
<td>410.00</td>
</tr>
<tr>
<th>February</th>
<td>135.55</td>
<td>895.20</td>
<td>1170.15</td>
</tr>
</table>

<table width="400" cellpadding="10" cellspacing="5">


<tr>
<th width="150"></th>
<th>Number of Units</th>
<th>Unit Price</th>
<th>Total Sales</th>
</tr>
<tr>
<th>November</th>
<td>200.00</td>
<td>100.00</td>
<td>20000.00</td>
</tr>

<tr>
<th>December</th>
<td>1000.00</td>
<td>1500.00</td>
<td>1500000.00</td>
</tr>
<tr>
<th>January</th>
<td>500.00</td>
<td>100.00</td>
<td>150000.00</td>
</tr>
</table>

<form>
<p>Search:</p>
<input type="search" name="search" placeholder="Enter keywords"/>
<input type="submit" value="search"/>
</form>

You might also like