In this channel, I provide the knowledge about, Computer & Mobile, Technology and education Tips, Blogging, SEO, Internet, Make Money, Computer, internet, Tech information, and Computer Tips & Tricks, etc.

Tuesday, 4 June 2019

Basic Information of Html In English




HTML Tags




Basic-Html-Tags
Basic-Html-Tags


1. HTML tag -


This tag is used to introduce HTML, the first and last tag HTML of any HTML is used. All other tags are used between this tag.
Syntex: -

<html>
............... ..
</ html>



2. Head Tag -



This is the tag used after the HTML tag. This tag contains all the information about all our web files. It is placed between the HTML tags. You can also keep other tags here.
Syntex: -
<html>
<head>
.................. ..
</ head>
</ html>



3. Title Tag -



It is written after Tag Head. It tells the title of the Web page. It appears on the Title File.
Syntex: -
<html>
<head>
<title>
my page
</ title>
</ head>
</ html>
This will show the title My page of our Web page. If title is not given, it tells Untitiled or URL.


4. Body Tag -



Body Tag works as a supplement to Head Tag. This tag shows each section that comes in the structure of any web page. It comes after Head Tag, Head Tag creates another part of Body Tag.
Syntex: -
<html>
<head>
<title>
my first web page
</ title>
</ head>
<body>
............... ..
............... ..
</ body>
</ html>
Tag cases are not sensitized, meaning they can write in small or large letters of any type.

No comments:

Post a Comment