Search This Blog
Hello Guys!! My name is Ammar Ali. In this blog you will find detailed tutorial videos about web development and web designing languages.. So stay tuned and keep learning..!
Featured
- Get link
- X
- Other Apps
01 HTML Formatting Tags (Part 1)
In this article we will take a look at basic HTML Formatting Tags:
On the second line we got <html> tag. In this syntax.. On every html document we must enclose every other tags inside this particular tag.
Now before we go further on we take a look at html document sections. HTML document have 2 sections one is head section and second is body section on head section.
Head Section:
On the head section we write the title of our html page, attaching the website icon (favicon), attaching the CSS external files, attaching JavaScript external files, and some meta information tags related to SEO.
Body Section:
Body section is used to create our website layout all your can see in the browser's body area is the body section of an html page.
Moving further..
As we can see on above code example we write:
<head>
<title>HTML Title<title>
</head>
Now we see these syntaxes line by line.
The first one is head tag this tag is also mandatory to write in our html document.. Further on we write title tag now this tag's text will be rendered in the browser tab like Home, About Us, Contact Us etc.
Inside the head tag we can attach our external CSS files also which helps styling our web page. We can also attach JavaScript files in the head section.
<body> tag is used to create layouts for our web pages.
Full Tutorial:
- Get link
- X
- Other Apps
Popular Posts
How To Remove JotForm Branding (With Using Code)
- Get link
- X
- Other Apps
Comments
Post a Comment