Why we have to learn HTML?
Let's go through one simple Program.
If you want to become an Website Designer or Web Developer, you have to learn HTML, HTML5, CSS, Javascript . Lets first we learn about Basic HTML, below.
What is HTML abbreviation?
HTML is Hyper Text Markup Language for webPages. HTML defines the structure and layout of a Web document by using a variety of tags and attributes.
There are many tags in HTML, lets learn few for now.
- <!DOCTYPE html> Defines the document Type.
- <html> Defines the beginning of HTML document.
- <head> Defines the information about Document, it includes the title tag in it.
- <body> Defines body of Program, it includes heading and paragraph tags.
- <h1>to </h6> Defines the headings of documents with different font size.
- <p> Defines the Paragraph of Program.
<!DOCTYPE html>
<html>
<head>
<title>Learn Html</title>
</head>
<body>
<h1>We are learning Html by adding heading</h1>
<p>We are adding paragraph</p>
</body>
</html>
<html>
<head>
<title>Learn Html</title>
</head>
<body>
<h1>We are learning Html by adding heading</h1>
<p>We are adding paragraph</p>
</body>
</html>