Write your first HTML document

19/10/2022 11 min Temporada 1

Listen "Write your first HTML document"

Episode Synopsis

In this episode, we guide you on how to write your first HTML document. 
It looks something like this:

<!DOCTYPE html>
<html lang="en">
<head>
<title>My First HTML Document</title>
</head>
<body>
<h1>This is main heading of this HTML page</h1>
<p>I am a parapgraph</p>
</body>
</html>