HTML
Hypertext Markup Language – the markup language Web pages are written in. HTML is meant to encode the document's content and its logical structure, while the presentation is determined by CSS. Interactivity is achieved with JavaScript.
Boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="icon" href="/static/favicon.ico">
</head>
</html>