Top 1,000 Features Creators Events Podcasts Extensions Interviews Blog Explorer CSV

HTML

< >

HTML is an open source text markup language created in 1991 by Tim Berners-Lee.

#6on PLDB 33Years Old 13mRepos
Leet Sheet · REPL · Spec · Wikipedia · Subreddit · Docs · Mailing List

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 Example Token
Standard Library

Hi

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 · About · Resources · Acknowledgements · Part of the World Wide Scroll