Skip to main content

Beginner Html Lesson 2

In the previous lesson we just copy a code and paste it. In this lesson we will guide you through rest of the things what is that let's talk more.

We made a webpage with something very weird for beginner don't worry go ahead.

<html> : This is the essential thing for any web page and also closing tag </html>.

Between these codes we add some more codes <head> </head> , <body> </body>
between the body code actually body itself saying that i am body of your webpage.

What Head tags containg (<head> </head>) ?

Basically head tags contains following

<title>
<base>
<link>
<meta>
<script>
<styles> 

What Body tags contains (<body> </body>) ?

And a body tags contains anything like your bolded text , your content of any type.Paragraphs , Headings anything. I hope you understand.

Comments