HTML

HTML (HyperText Markup Language) is the standard markup language used for creating the structure and presenting content on the World Wide Web. It is a fundamental building block of web pages and is used to define the structure and layout of a webpage by using various tags and attributes.

HTML provides a set of predefined elements that can be used to organize and format content such as headings, paragraphs, lists, links, images, tables, forms, and more. It is a static language as it describes the structure and content of a webpage and does not provide interactivity on its own. HTML is often combined with other technologies like CSS (Cascading Style Sheets) and JavaScript to enhance the functionality and appearance of web pages.

Meta

Redirection

Put <meta http-equiv​="refresh" content​="5;URL​=https://example.com"> in the header section of the page.

  • http-equiv"refresh"= tells the browser that the content of the meta tag is used as an HTTP header for refreshing or redirecting the page.
  • content"5;URL=https://example.com"= specifies that the page should refresh after 5 seconds and redirect to the URL https://example.com.