Home » HTML » Html miscellaneous » Question
  1. What will add line break in the body of mail?
    1. %10
    2. %0h%0A
    3. %20
    4. %0D%0A
    5. None of these
Correct Option: D

%20 represents space character. A data link escape is shown by %10. %0D%0A will add a newline in the text of the body.

<a href="mailto:enquiry@sanfoundry.com?body=Hello%0D%0AEveryone!!">Send mail</a>



Your comments will be displayed only after manual approval.