Found 10483 Articles for Web Development

Define a scalar measurement within a known range in HTML

Bhanu Priya
Updated on 10-Oct-2023 14:20:37

307 Views

To define a scalar measurement within a known range or a fractional value, we use tag in HTML. tag is also called as gauge. For disk usages, relevance of query results etc., we use tag in HTML. The tag is not used to indicate progress bar, If we want to indicate progress bar, we use tag. For best accessibility it’s better to use tag while working on tag. Syntax Following is the usage of tag in HTML − Example Following example where we are trying to define a scalar ... Read More

Highlight HTML content for reference purposes

Bhanu Priya
Updated on 10-Oct-2023 14:19:01

328 Views

The tag is used to mark or highlight the text in HTML. It is one of the new tags used in HTML5. It supports global and event attributes. we can include tag in between the statement also, like − I play with Coding Syntax Following is the syntax of tag in HTML document − Contents... Example In the following HTML example, we are trying to print some text and highlighting it using the tag in HTML - TutorialsPoint ... Read More

Include meta data in an HTML document

Bhanu Priya
Updated on 10-Oct-2023 13:51:43

466 Views

To include meta data in an HTML document, we use tag. Metadata provides important information about HTML document. It is used to add value pairs for describing the properties of HTML documents, like document author, list of keywords, expiry date, author name, etc. The meta data consists of only one tag, opening tag . Meta data carries information within its attributes. The tag does not change the physical appearance of document, even though we include one or more meta tags in a web document based on information. Syntax The following is the usage of meta tag in HTML ... Read More

How do we add a menu list in HTML?

Bhanu Priya
Updated on 10-Oct-2023 13:48:06

1K+ Views

If we want to create a menu list in HTML, we have to use tag, it is used to defines a list of commands that can be used by the users for creating listing form control, context menus, toolbar, and commands. At present this tag was removed from HTML and again reintroduced in HTML5. On majority of platforms, this tag is not supported on the majority of platforms. Syntax The usage of tag in HTML is shown below − -- --- --- The attributes present in menu tag are shown below ... Read More

How do we create an image map in HTML?

Sindhura Repala
Updated on 21-Jan-2025 15:37:40

2K+ Views

Clickable Areas in HTML To create clickable areas within an image, we use an image map, which is defined using the tag, with both opening and closing tags: . An image is a list that coordinates specific areas of an image, allowing different parts of the image to be hyperlinked to various destinations. These maps enable the server-side image web browser to send information to the server about where the user clicks within an image. Client-side image maps do not require any special logic to be executed on the server, as they do not need any JavaScript. ... Read More

How do we display the main content in the document in HTML5?

Bhanu Priya
Updated on 10-Oct-2023 13:06:01

278 Views

To display the main content in the document, we use tag. The tag consists of open and closing tags, the content present in between element is unique to the document, it does not contain any content which is repeated across documents like navigation links, site logos, sidebars and search forms. In a document there should be only one element. The main is not a descendent of , , , or element. The tag supports almost all browsers and it also supports global and event attributes. Syntax Following is the usage of tag in ... Read More

Create a command/menu item that the user can invoke from a popup menu in HTML5

Ankith Reddy
Updated on 24-Jun-2020 07:54:05

291 Views

Use the tag to create a command/ menu item that the user can invoke from a popup menu in HTML5. The HTML tag is used for defining a menu item for a menu.The following are the attributes of the tag −AttributeValueDescription  checked  checked defines that a menuitem should be   checked default  default a menuitem is marked as a default   command disabled  disabled disables a menuitem and cannot be clicked icon  url defines an icon for a menuitem label  text defines a name for a menuitem which is displayed to the user radiogroup  groupname defines a group of commands out of which only one can be selectedtype ... Read More

How to add a list item in HTML?

Sindhura Repala
Updated on 23-Jan-2025 11:47:56

2K+ Views

Adding Ordered Unordered Lists To define a list item in HTML, use the tag. It can be used inside ordered lists (), unordered lists () and menu lists (). In an ordered list , the list items are displayed with numbers or letters. In an unordered list , and a menu list , the list items are displayed with bullet points. Syntax Following is the syntax list item in HTML − ……… The list tag also supports the following additional attributes − ... Read More

How to add a resource reference in HTML?

Bhanu Priya
Updated on 10-Oct-2023 13:01:16

3K+ Views

In HTML the tag is used to add a resource reference. The link defines the relationship between the external document and current document. The tag is also used to link external style sheets and to add favicon to our websites, tag consists of attribute values. Following is the usage of tag in HTML - The tag is supported by almost all browsers and it also supports global and event attributes. Attributes Attributes of the tag are shown below − crossorigin − The value of crossorigin attribute is anonymous use-credentials, ... Read More

How to add a layer in HTML?

Bhanu Priya
Updated on 10-Oct-2023 12:57:38

3K+ Views

We can add a layer to an HTML document using the tag in HTML. Once we have created a layer using this tag, then we can manipulate it using JavaScript. This tag is used to position and animate (through scripting) elements in a page. A layer can be thought of as a separate document that resides on top of the main one, all-existing within one window.Following is the usage of tag in HTML - Attributes of the tag Above − The above attribute in layer tag specifies the name of above layer when compared ... Read More

Advertisements