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.


0 Comments