Try to complete the following tasks in the below CodePen editor:
<h1>
tag with content “Learning HTML”.<p>
tag below above <h1>
tag with content “I am learning HTML and having fun.”
<!DOCTYPE HTML> is the declaration type for HTML5.
<!DOCTYPE HTML> is not a HTML tag but information to the browser about what document type to expect.
<title> tag is used to give the title of the Web page.
<h1> tag is used to create a heading in the Web page.
<p> tag is used to create a paragraph in the Web page.
We can view the source code of the Web page by right clicking the mouse and clicking on “View Page Source”.