Found 8894 Articles for Front End Technology

Multi-Column Layout for Text Flow using HTML

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

2K+ Views

In HTML tag is used to create multi-column layouts. It has opening and closing tags, . Following is the syntax of multicol tag. …….. Attributes of tag Following are the attributes used in tag − cols The value used for col attribute is number and it specifies how many columns need to be used. Following is the syntax of cols attribute in mutlicol tag. gutter The value used for gutter attribute is px, it specifies the distance between each column in pixels. Following is the Syntax ... Read More

Define a scalar measurement within a known range in HTML

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

174 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

228 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

221 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

728 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?

Bhanu Priya
Updated on 24-Nov-2023 00:50:14

2K+ Views

For creating clickable areas in an image, we use image map which is defined as tag, with open and closing tags The tag defines an area inside an image-and nested inside a tag. Following are the attributes − Sr.No Attribute & Description 1 altThe alternate text for the area 2 coordsThe coordinates for the area 3 downloadThe target will download when the hyperlink is clicked 4 shapeThe shape of the area 5 targetWhere the URL will open Syntax Following is the ... Read More

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

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

180 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

208 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?

Bhanu Priya
Updated on 10-Oct-2023 17:21:29

897 Views

To define list item in HTML we use tag, it can be used inside ordered lists (), unordered lists () and in menu lists (). In ordered list , the list items were displayed with numbers or letters. In unordered list , and in menu list the list items are displayed with bulletpoints. Following are some examples of ordered and unordered lists − Unordered Lists − student 1 student 2 student 3 example 1 example 2 example 3 Ordered Lists − student 1 student 2 student 3 example 1 example 2 ... Read More

How to add a resource reference in HTML?

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

2K+ 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

Advertisements