HTML

HTML became a public phenomenon in the early 1990s. Originally, HTML was created to describe the structure and content of textual documents with basic functionality, such as links and simple forms.

HTML is an XML-like markup, and is essentially the display language of browsers. Every browser-based app, at its very core, returns structured HTML to the browser. The browser then parses the HTML and generates the HTML DOM, and then finally renders it to the screen.

Essentially, HTML is comprised of structural and semantic elements that instruct the browser of the structure and content. The following is a simple example of HTML:

<!doctype html><html>  <head>    <title>Hello HTML!</title>  </head>  <body>    Welcome to HTML!  </body></html>

The current ...

Get Hands-On Full-Stack Web Development with ASP.NET Core now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.