Technology/File and Document Formats/HTML.md
HTML
MarkdownHyper-Text Markup Language or HTML is a document format that specifies the layout of a webpage. HTML5 is the latest spec approved in 2008.
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>
- A Simple Hello World in HTML5
Linked From
- CSS Technology/File and Document Formats/CSS.md
- Programming Languages Technology/Programming/Languages/Programming Languages.md
- Tailwind Technology/File and Document Formats/Tailwind.md
- web browser Technology/Programming/Languages/web browser.md