Nested Elements in HTML
In this tutorial, we will learn the nested elements in HTML.
<html> <body> <h1>Welcome To T4-Tutorials</h1> <h2>Nested HTML Elements:</h2> <p>All HTML documents consist of nested HTML elements....</p> <p>Thanks For Your Love For T4-Tutorials...</p> </body> </html>
Don’t Forget To End Tag in HTML
<html> <body> <h1>Welcome To T4-Tutorials</h1> <h2>HTML Element:</h2> <p>Thanks For Your Love For T4-Tutorials...... <p>Thanks For Your Love For T4-Tutorials...... </body> </html>