Translate

Tuesday, 31 October 2017

link tag


<!DOCTYPE html>
<html>

<head>
  <title>Link in HTML</title>
</head>

<body>

  <a href="http://www.mafasict.blogspot.com">mafasict</a>


</body>

</html>

check box


<!DOCTYPE html>
<html>

<head>
  <title>Check Box</title>
</head>

<body>


  <input type="checkbox" name="subject">Maths

  <input type="checkbox" name="subject">Ict

</body>

</html>

radio button


<!DOCTYPE html>
<html>

<head>
  <title>Radio Button </title>
</head>

<body>


    <input type="radio" name="gndr">Male

   
 
    <input type="radio" name="gndr">FeMale
 

</body>

</html>

Featured post

check box

<!DOCTYPE html> <html> <head>   <title>Check Box</title> </head> <body>   <input ty...