HTML Programming language code example

Example 1: is html a programming language

HTML is a markup language. We don't say HTML as a programming language.

Example 2: basic html document

<!DOCTYPE html>
<html lang="pt-br" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
	<link rel="stylesheet" type="text/css" href="style.css">
	<title>...</title>
</head>
<body>
	...
<script type="text/javascript" src="script.js"></script>
</body>
</html>

Example 3: html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>HTML basics</title>
    </head>
    <body>


    </body>
</html>

Example 4: html a language

don't even think about it BRUH

Example 5: what is html

Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript

Example 6: is html a programming language

Since HTML5, HTML is considered a programming language. 
This is because it has the possibility of interacting with the user, so although it is a markup language,
it has scripting so it is tecnically a programming language.

Tags:

Misc Example