Mark Work Title Using Cite Tag in HTML

Lokesh Badavath
Updated on 11-Nov-2022 10:26:24

224 Views

Work title can be the title for a book, a song, a painting, a movie, etc. We use tag, to mark work title in HTML. The tag indicates citation and whatever comes inside the tag represents work title for specified thing on we page. Syntax Following is the syntax for the tag. Work title Example Following is example program for the tag. DOCTYPE html> HTML cite tag Heading Learn Java from Java ... Read More

Mark Abbreviation or Acronyms in HTML

Lokesh Badavath
Updated on 11-Nov-2022 09:21:52

368 Views

We use shortened versions to represent a series of letters. The HTML tag, used to define an abbreviation or an acronym, like "HTML", "CSS", "Mr.", etc. Syntax Following is the syntax for the tag. DLF Example Following is the example program for the tag. DOCTYPE html> HTML abbr tag Timings We follow AI for our webinars. Example Following is one more example program for the tag. DOCTYPE ... Read More

Markup Postal Address in HTML

Lokesh Badavath
Updated on 11-Nov-2022 09:20:03

3K+ Views

Addresses are used in physically locating a building. An address is a information, presented in a fixed format, used to give the location of a building, apartment, along with other identifiers are used such as house or apartment numbers. We use tag, to provide contact details on the web page. The HTML tag defines the contact information for the author of a document or an article on the web page. The contact information can be a building location, email address, URL, phone number, etc. The text in the element usually renders in italic format, and it ... Read More

Use Blockquote in HTML

Lokesh Badavath
Updated on 11-Nov-2022 09:17:39

643 Views

The tag is to indicate long quotations. It should contain only block-level elements within it and not just plain text. It specifies a section quoted from another source and contains only block-level elements. We can also use the cite attribute inside the tag to indicate the source of the quotation in URL form. Syntax Following is the syntax for the tag. The multiple line content to be quoted Example Following is the example program for the tag. DOCTYPE html> DLF stands for Delhi Land and Finance ... Read More

Use Quotation Marks in HTML

Lokesh Badavath
Updated on 11-Nov-2022 09:14:47

6K+ Views

We use tag, to add short quotation marks in HTML. And if we want to quote for multiple lines, use tag. We can also use the cite attribute inside the tag to indicate the source of the quotation in URL form. Syntax Following is the syntax for the tag. The content to be quoted Example Following is the example program for the tag. DOCTYPE html> DLF stands for Delhi Land and Finance Delhi Land and Finance is one of the largest commercial real ... Read More

Mark Inserted Text in HTML

Lokesh Badavath
Updated on 11-Nov-2022 09:13:01

370 Views

The to be inserted is marked with an underline. Underlined text is used to help draw attention to the text. We use the tag, to mark a text in HTML. It represents a text in a different style from another text in the content of the web page. We can also use the style attribute, to mark a text in HTML. The style attribute specifies an inline style for an element. This attribute is used inside the HTML tag, with the CSS property text-decoration property. Syntax Following is the syntax for the tag. The text to be ... Read More

Mark Deleted Text in HTML

Lokesh Badavath
Updated on 11-Nov-2022 09:10:46

2K+ Views

We use tag, to delete a text in HTML. This tag mark strike on the text which is to be delete from the document. We can also use the style attribute, to strike a text in HTML. The style attribute specifies an inline style for an element. This attribute is used inside the HTML tag, with the CSS property text-decoration property. Syntax Following is the syntax to delete a text in HTML. The content to be deleted Example Following is the example program to delete a text in HTML. DOCTYPE html> ... Read More

Use Small Formatting in HTML

Lokesh Badavath
Updated on 11-Nov-2022 09:06:33

323 Views

The tag in HTML makes text font size smaller (one size smaller to the original font size) in the HTML document. The HTML tag is found inside the tag. The tag makes the text one size smaller. Syntax Following is the syntax for the tag. The text… Example Following is the example program for the tag. DOCTYPE html> Tutorials point Example We can use tag inside the HTML elements. Following is the example program for the tag inside the tag. DOCTYPE html> ... Read More

Why Use Head Tag in HTML Page

Lokesh Badavath
Updated on 11-Nov-2022 08:15:36

3K+ Views

The tag is a container for all the head elements in an HTML page. We use … tag to add it to HTML page. head tag contains the title of the document, styles, scripts, and other HTML elements. The element is a container for metadata-data about data and is placed between the … tag. The following elements can go inside the element − − Use in every HTML page defines the title of the content. − Used to apply a simple style to HTML document − Specify a default URL and a default ... Read More

Use Image Height and Width Attribute in HTML Page

Lokesh Badavath
Updated on 11-Nov-2022 08:13:37

2K+ Views

Images make content more interesting by helping readers to understand the content better on the web page. We can insert images into the HTML page. To insert image in an HTML page, use the tags. It is an empty tag, containing only attributes since the closing tag is not required. The src attribute is used to add the image source which is the URL of the image(location of the file). The alt attribute is for adding alternate text, width is for adding width, and height is for adding the height of the image. We use style attribute to ... Read More

Advertisements