Computer Science, asked by Enzo6516, 11 months ago

How to mark work title using cite tag in HTML?

Answers

Answered by Aagmansriva993
0

HTML <cite> Tag. The <cite> tag defines the title of creative work, books, paintings, television programs, websites, etc. The text inside the <cite> is displayed in italic. Use the <blockquote> element to define long quotes, and the <q> element to define short ones.

I follow you

you mark me brainliest please...

Answered by Anonymous
2

Answer:

The title tag is defined as the title for the web browser. The title tag is compulsory for designing a web page with HTML. The title appears in the title bar in the web page. It gives the user a brief idea of what the website is about.we use It to give a name for the website.

Title tag is opened by <title> and ended by </title>

Title tag is placed between <head> and </head>

example of a basic html coding:

<html>

 <head>

   <title>first page</title>

 </head>

 <body>

   This is a line of text.  

 </body>

</html>

Similar questions