Found 9054 Articles for Front End Technology

How to include the result of a calculation in HTML5?

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

417 Views

To define or include a result of calculation in HTML, we use tag. The output tag helps in providing the result of calculation, which is performed by the JavaScript (Client side scripting language). Syntax Following is the usage of tag − --- Attributes The attributes used in output tag is shown below − Attribute Description for List of IDs of other elements, i.e. it indicates the elements who have contributed input value to the calculation. form Enables to place output elements anywhere within a ... Read More

How to include an option in a drop-down list in HTML?

Bhanu Priya
Updated on 18-Nov-2023 03:19:19

1K+ Views

For creating a drop-down list in HTML, we use command, it is generally used in form for collecting user input. To refer the form data after submitting, we use name attribute. If there is no name attribute, then there will be no data from drop-down list. For associating the drop-down list with label; id attribute is needed. For defining options in drop-down list, we have to use tag inside the element. Syntax Following is the usage of tag in HTML - The HTML ... Read More

How to add a paragraph in HTML?

Bhanu Priya
Updated on 10-Oct-2023 14:34:33

321 Views

To define a paragraph in HTML, we use tag. A block of text is representing a paragraph and it always starts on a new line. Before and after a paragraph the browser automatically adds white spaces. Syntax To represent a paragraph in HTML, following syntax is used − This is a Paragraph Paragraph consists of open and closing tags. Example Following example to add a paragraph in HTML − How to represent paragraph tag This is a first paragraph. This is a second ... Read More

How to add a parameter for an object in HTML?

Bhanu Priya
Updated on 10-Oct-2023 14:30:30

728 Views

To define parameters for plug-ins that is associated with object element we use tag. tag does not contain end tag. The tag supports all browsers, but the file format defined in object may not support. It also supports the global and event attributes in HTML. Syntax Following is the usage of tag in HTML − The parameter tag in HTML, accepts four attributes, as shown below − name − The name attribute in param tag used to specify the name of the parameter. value − The value attribute in param tag is ... Read More

Section that contains only navigation links in HTML5

Bhanu Priya
Updated on 10-Oct-2023 14:27:49

91 Views

Navigational links can be provided by using tag in the document. The links of nav element navigates to other webpages or points to different section of same webpage. Examples of nav element are contents, tables, menus and indexes. Syntax Following is the usage of tag in HTML − Links…… Example Following example where we are trying to create a section that contains only navigation links − TutorialsPoint ... Read More

How to allow no breaks in the enclosed text in HTML?

Bhanu Priya
Updated on 10-Oct-2023 14:25:40

128 Views

To allow no breaks in the enclosed text in HTML, we will use tag for creating a single line text, it does not bother about how long the statement is. If we want to read whole text a horizontal scroll has to be used. It is exactly opposite to break tag. tag is not supported in HTML5. This tag does not contain any attribute, it is having an open and closed tags. The tag in HTML The HTML tag is used to instruct the browser not to break the specified text. This is used ... Read More

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

143 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

203 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

182 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

Advertisements