JavaScript Tutorial

Applications of HTML

  1. Web Document Creation –  Document creation on the internet is dominated by HTML. It’s a basic concept via tags and Document Object Model. Web documents consist of three sections: title, head, and body.
  2. Web Pages Development – HTML is used to create web pages that are displayed on the World Wide Web. Almost every web page has HTML tags to render its details in the browser.
  3. Internet Navigation – HTML provides tags used to navigate from one page to another. This navigation is possible by utilizing the concept of Hypertext, which is essentially text that, when clicked, navigates to other pages.
  4. Responsive Images on Webpages –With the "srcset" attribute of the "img" tag, a developer can fully control how images look in different responsive views.
  5. Client-side Storage –  In addition to cookies, HTML5 includes the feature of "localStorage" and "IndexDB," which help in storing client-side data.
  6. Game Development Storage – Before the advent of HTML5, game development was the exclusive domain of Flash. Now that browsers support new HTML5 features, it is possible to create games with HTML5.
Go back to Previous Course