Learn HTML.

HTML Basics


HTML is the Standard Makup language for web pages.

With HTML you Can create your own website.

HTML Stands for Hyper Text markup language.

HTML elements tell the browser how to display the content.

EXAMPLE

<!DOCTYPE>
<html>
<head>
<title>page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph</p>

</body>
</html>

Post a Comment

0 Comments