Home >>HTML Tutorial

HTML Tutorial

A Simple HTML Document

HTML

Example

<!DOCTYPE html>
<html>
<head>
<title>Welcome to HTML programing</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html> Try it Yourself ยป