Learn HTML



Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. With HTML you can create a website. HTML is most popular programming language. HTML was invented in 1993. In 28 October 2014 HTML5 was released.

In today's World everyone use HTML5. HTML have Start Tags and end tags. Example: <tag>content</tag>. Start tags is donated by <> and end tags is donated by </>

HTML Example:

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

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

</body>
</html>

Example explains:

Start tags: <html>, <head>, <title>, <body>, <h1>, <p>.

End tags: </html>, </head>, </title>, </body>, </h1>, </p>.

In the next page we going to learn about HTML tags.






Post a Comment

0 Comments