Definition
Simple example of HTML
<!DOCTYPE>
<html>
<head>
<title>This is web page title</title>
</head>
<body>
<h1>This is Heading 1</h1>
<p>This is paragraph</p>
</body>
</html>
Browser view
This is Heading 1
This is paragraph
0 Comments