|
Choose a lesson here: HTML Tags: **HTML Tag List Lesson1:Head Tag Lesson2:Body Tag Inside Body: Lesson3:Background Color Lesson4:Background Image Text Manipulation: Lesson5:b,u,i,center,br Lesson6:hr,ur,li,ol Lesson7:h1,space,div Lesson8:pre,font Lesson9:strike,power Images: Lesson10:Inserting Images
|
|
How to set the title of the page? Use Head Tag!
- It is like the head of a human, because it is used to identify the file. head tag should lie inside "html" tag. head tag has many purposes But at this point we will discuss only one of its tags <title>. There are other tags such as <script>, <style>, <meta>.
Code: <html> <head> </head> </html>
<title> This tag is used to set the title of the page. The title will be displayed on the left top corner of the browser page. This tag should be present inside "title" tag as: <html> <head> <title> The Title you want </title> </head> </html> |