Structuring Document Scope IN HTML

  • At high level the document scope comprises of 2 sections. 
    • Head Section
    • Body Section




Head Section:

  • It comprises of content that is intended to load into browser memory and give access later to the browser or page. 
  • It is defined by using <head> element.
  • Typically, HTML head section comprises of contents like
    • Title
    • Link
    • Meta
    • Style 
    • Script 

Syntax:

<!DOCTYPE html>

<html>

<head>

 

</head>

</html>