Measures Concepts
GitHub icon

HTML

HTML - Text markup language

< >

HTML is a text markup language created in 1991 by Tim Berners-Lee.

#6on PLDB 33Years Old 13mRepos

Try now: Web · Replit

Hypertext Markup Language (HTML) is the standard markup language for creating web pages and web applications. With Cascading Style Sheets (CSS) and JavaScript it forms a triad of cornerstone technologies for the World Wide Web. Web browsers receive HTML documents from a web server or from local storage and render them into multimedia web pages. Read more on Wikipedia...


Example from hello-world:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hello World</title> </head> <body> <h1>Hello World</h1> </body> </html>
<HTML> <!-- Hello World in HTML --> <HEAD> <TITLE>Hello World!</TITLE> </HEAD> <BODY> Hello World! </BODY> </HTML>
Example from Linguist:
</UL> <P><A HREF="devices.html">Supported Targets</A></P> </BODY> </HEAD>
Example from Wikipedia:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

Language features

Feature Supported Token Example
Case Insensitive Identifiers ✓
MultiLine Comments ✓
Comments ✓
Semantic Indentation X
Ternary operators X
Conditionals X
Line Comments X
Macros X
File Imports X
Enums X
Operators X

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout