<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML</title>
</head>
<body>
<h1>My first html program</h1>
<br>
<h2>HTML is a programming language? <a href="https://developer.mozilla.org/es/docs/Web/HTML"> See it here</a> </h2>
<h2>This is a programming language and it is JavaScript <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">Check it here</a></h2>
</body>
<script>
alert('This is a programming language')
</script>
</html>