Welcome to Lesson 2 of our HTML tutorial series! In this lesson, we will create a sample webpage and explore the use of headings in HTML.
Now open your HTML file using Notepad.HTML very easy to code. We need tags to code HTML. There are a lot of tags in HTML. But in the beginning, We need to learn some tags only. There is a rule for HTML tags. If we open the tag as <html> we need to close it as </html> using "/".We can type the code inside the tags. But there are some tags that don't need to use close tags. We can learn it after.
We must code our HTML inside html tag.(<html>You Must Code Here</html>)
There are two tags on all web pages.It is <head></head> and <body></body> tags.The title of the webpage and other some codes type inside the head tag. All the codes that viewing on the webpage are typed inside the body tag.
The sample webpage
<html>
<head>
The head codes go here
</head>
<body>
The body codes go here
</body>
</html>
The Heading Tags
There 6 heading tags. The heading tags go from big to small. The heading tags are
<h1>Sample Text</h1>
<h2>Sample Text</h2>
<h3>Sample Text</h3>
<h4>Sample Text</h4>
<h5>Sample Text</h5>
<h6>Sample Text</h6>
h1 is the biggest heading and h6 is the smallest heading.
This is a sample code using a heading tag.
<html>
<head>
</head>
<body>
<h1>This is my first HTML code</h1>
<h2>This is my first HTML code</h2>
<h3>This is my first HTML code</h3>
<h4>This is my first HTML code</h4>
<h5>This is my first HTML code</h5>
<h6>This is my first HTML code</h6>
</body>
</html>
This lesson is over. In the third lesson, We will give some advance tags. see you soon. bye.. bye...
Looking to take your HTML skills to the next level? Join our vibrant community today! For just $5 per month, gain access to advanced HTML techniques, engage with like-minded enthusiasts, and embark on a journey of growth and learning. Don't miss out on this opportunity to connect with fellow enthusiasts and elevate your coding prowess. Click here to join our community and unlock a world of possibilities!
.png)
0 Comments