FIRST LESSON OF HTML
Here, we are explaining how to write a basic HTML code with its output.
<!doctype html>
<html>
<head>
<title>First Lesson of HTML</title>
<!--This is the title of webpage which appears on the top of the page--><html>
<head>
<title>First Lesson of HTML</title>
</head>
<body>
<h1>Learning HTML is quite interesting</h1>
<!--This is the heading of the webpage. Here, h define the heading and 1 define the size-->
<p>HTML is a hyper text markup language, which is helpful in designing a webpage with the help of different tags.
It is vey easy computer language.
</p>
<!--This is the paragraph of the webpage-->
</body>
</html>
OUTPUT OF THE ABOVE CODE |
Now, key points to remember always:
- In HTML, heading tag can be used from <h1> to <h6>, where <h1> is the largest heading and <h6> is the smallest heading.
0 comments:
Post a Comment