Beginners: Start / HTML5 Code Example





Html5 code examples for beginners ;

<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>  


Let's examine one by one



Doctype is;

Indicates which language the content belongs to.


Title is;


It means the title of your page.


H1 tag is;


Title of your text

P tag is;

Your text.


Comments