Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Thursday, November 17, 2011

Learning through Innovative technique picture


http://www.flickr.com//photos/physics_for_fun/show/with/5279683649/

Saturday, August 14, 2010

Uses of special symbols in HTML Programm

<html>
<head>
<title>Use of Special Symbols</title>
</head>
<body>
<h4 slign="center">Presentation of MTHEMATICS</h4>
<p>
&#9658; The radius of the base of cone is 7 cm and its slant height is 10 cm.
Find the area of lateral surface of the cone<br><hr>
<b> Solution : </b><br>
&#9658; </b>here radius r=7 cm and Slant height l=10 cm<br>
&nbsp;&nbsp;&nbsp; Lateral surface area of cone = &#928; * r * l<br>
&nbsp;&nbsp;&nbsp;=22/7 * 7 * 10<br>
&nbsp;&nbsp;&nbsp;=220<br>
</body>
</html>

Friday, August 13, 2010

Computer Programm for checkbox In HTML

<html>
<head>
<body><form>
<table>
<tr>
<td>Receive alert by:</td>
<TD><input TYPE="radio" name="alert by" value="Email"checked>Email
<input TYPE="radio" name="alert by" value="SMS">SMS
</td></tr>
<tr><td> Games of Interest:</td>
<td> <input type="checkbox" name="game" Value="Shooting"checked>Shooting
<input type="checkbox" name="game" Value="Puzzle">Puzzle
<input type="checkbox" name="game" Value="Detective"checked>Detective
<input type="checkbox" name="game" Value="scrabble">Scrabble
</td>
</tr>
<tr><td>Country:</td>

<td><select name="Country" Size=3 multiple>
<option  value="France">France</option>
<option  selected value="India">India</option>
<option value="New Zeland">New Zeland</option>
<option value="United Kingdom">United Kingdom</option>
<option value="United States">United States</option></select>
<br> to select more than one country, hold CTRL key while clicking 
</td></tr>
</table>
</form>
</head>
</html>