Tutorials

KodeKite Tools

HTML
Flexbox
SVG
Canvas
HTML Tutorial

More


HTML Page Structure
PAGE STRUCTURE

Structure is a representation of whole HTML document. It tells about look of page or document.

Syntax

Following are the basic elements which create HTML document

  • <html></html>
  • <head></head>
  • <title></title>
  • <body></body>

Example

<html>

<head>

<title>Title<title>

</head>


<body>

Content

</body>

</html>


The content is a visible part of document so you can put any html element to display data as shown in above code example.