Translate

Monday, 30 October 2017

div tag


<!DOCTYPE html>
<html>

<head>
  <title>div tag</title>
</head>

<body>

  <!--Div can be used to group elements-->
  <div>
    This is the First Div
    <input type="text">
    <input type="text">
    <input type="text">
  </div>

  <div>
    This is the Second Div
    <input type="text">
    <button>Sample Button</button>
  </div>

</body>

</html>

No comments:

Post a Comment

Featured post

check box

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