We will look into the structure of the HTML page in certain perspectives:
HTML mainly consists of 2 primary structures:
<head> ... </head> - describing what is the page is all about, how to read/display the body, notes, raw materials, etc.<body ... </body> - contents of the page.For the HTML code:
<!DOCTYPE html><html> <head> <title>Sample page</title> </head> <body> <h1>Sample page</h1> <p>This is a <a href="demo.html">simple</a> sample.</p> <!-- this is a comment --> </body></html>It generates this type of Document Object Model (DOM), as in:
htmlhtmlNotice the mapping from the code opening and closing. Therefore, it is always a best practice to close the html tag. This DOM tree is manipulatable by script, known as Javascript.
That's all about structure. You may proceed to the next section - securely code HTML.