← All tutorials

GoCareerGo Tutorials

HTML Tutorial

Tags, attributes, HTML5 APIs and semantic markup — the web's foundation.

Basic HTML Tags

Every HTML document shares the same minimal skeleton of three nested tags.

  • <html> — the root element wrapping the entire document
  • <head> — metadata: title, charset, linked stylesheets/scripts (not rendered as content)
  • <body> — everything visible to the user
<html>
  <head><title>Page Title</title></head>
  <body>Content goes here</body>
</html>