code of html code example
Example 1: html
<code>
x = 5;
y = 6;
z = x + y;
</code>
Example 2: basic html codes
<html> </html>
<body> </body>
<h1> </h1>
<br>
<p> </p>
<head> </head>
Example 3: all codes of html
<html>
<head><title>Hii</title></head>
<body>
<p>Hii</p>
</body>
</html>