Jazzo.co.uk uses cookies to provide necessary site functionality and improve your experience. By using our website, you agree to our Privacy Policy and our Terms & Condition.

HTML - Structure

query_builder | Christopher Pisani

The HTML page consists of two main sections, the <head> and the <body>.

In the <head> section, we serve information about the website :

  • <title> - Web Page Title
  • <style> - Web Page Styling (CSS)
  • <base> - Specifies a default URL and a default target for links on a page
  • <link> - Links to an external CSS style sheet
  • <meta> - Assigns metadata about the HTML page
  • <script> - JavaScript code or link to external JavaScript page

The <body> represents the visual content of the HTML document. An example of a representation of the body, can be seen in the image below.