We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<!DOCTYPE html> <html> <head> <title> Parser </title> </head> <body> <h1>This is a header <h1>This is another header <p>This is a paragraph
For the above code, the "Hello Testing" is displayed on the third line whereas it should be displayed on the fifth line
The text was updated successfully, but these errors were encountered:
No branches or pull requests
<!DOCTYPE html>
<html>
<head>
<title> Parser </title>
</head>
<body>
<h1>This is a header
<h1>This is another header
<p>This is a paragraph
<div>This text inside div tags
<div>
<h1>Hello Testing
<p>This is paragraph inside div tags
</div>
<ul>
<li>UL item 1
<li>UL item 2
<li>UL item 3
<div>
<p>This is paragraph inside div inside ul
</div>
</ul>
<ol>
<li>OL item 1
<li>OL item 2
<li>OL item 3
</ol>
</body>
</html>
For the above code, the "Hello Testing" is displayed on the third line whereas it should be displayed on the fifth line
The text was updated successfully, but these errors were encountered: