Translate

Monday, 30 October 2017

br tag


<!DOCTYPE html>
<html>

<head>
  <title>BR Tag</title>
</head>

<body>

  <!--Without BR Tag-->
  Line 1
  Line 2
  Line 3
  Line 4
  Line 5

  <!--With using BR Tag-->
  <br> Line 1
  <br> Line 2
  <br> Line 3
  <br> Line 4
  <br> Line 5

</body>

</html>

No comments:

Post a Comment

Featured post

check box

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