Question 11
Consider the following HTML Document.
<!DOCTYPE html><head> <title>Test Document</title> <style> h4, span { display: inline-block; width: 200px; } </style></head><body> <h4>Statement 1 from Document.</h4> <h4>Statement 2 from Document.</h4> <span>Statement 3 from Document.</span> <span>Statement 4 from Document.</span></body></html>How will the browser render the HTML document given above?