HTML elements defined

<h1>Basic Web Document</h1>
  • The HTML element starts with a start tag: <h1>
  • The content of the HTML element is: Basic Web Document
  • The HTML element ends with an end tag: </h1>
  • The purpose of the <h1> tag is to define an HTML element that should be displayed with larger, bold text.
  • Just remember: Every start tag should have a corresponding end tag.