Found 9053 Articles for Front End Technology

Create superscripted text in HTML

Bhanu Priya
Updated on 10-Oct-2023 16:20:19

157 Views

Superscript The Superscript is used to write the text above the character by using the tag in HTML document. The tag is nothing but superscript text. It appears half a character above the normal sentence line and appears as small font. Mostly these superscript text uses for footnotes. The HTML sup tag represent the text in a smaller font and appear half a character. Superscript consists of open and closing tags, the tags supports global and event attributes. They can support for wide variety of browsers The tag used to represent mathematical formulas It can also ... Read More

Create a table in HTML

Bhanu Priya
Updated on 10-Oct-2023 16:19:03

505 Views

For defining tables in HTML tag is used. It contains other tags which define the structure of the table. Each row in a table is defines with tag, it has open and close tags like The table header can be represented by using tag, it also contains open and close tag . The data in each cell is defined with tag. It provides open and close tags. The following are the attributes − Attribute Value Description abbr abbreviated_text Deprecated − Specifies an abbreviated version of the content ... Read More

Create a selectable list in HTML

Bhanu Priya
Updated on 10-Oct-2023 16:16:23

2K+ Views

The tag is used to create a drop-down list in HTML document. We just need to add the “multiple” attribute to the element. Now, in order to select multiple options, we use following syntax − text The HTML tag also supports the following additional attributes − Attribute Value Description Disabled disabled Disables the input control. The button won't accept changes from the user. It also cannot receive focus and will be skipped when tabbing. Label text Defines a label to use when ... Read More

Display strikethrough text in HTML

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

555 Views

Strikethrough text means line through text, tag helps us to cut line in the text. This tag is not supported in HTML5; it was used when everyone working on HTML4. Now instead of tag tag is using in HTML5 to define deleted text. Syntax Following is the usage of strikethrough tag in HTML − text…. Example In the following example we are trying to display a strike through a text using the tag – TutorialsPoint Its an Edutech Company handles all Technical Non-Technical ... Read More

Create strong text in HTML

Bhanu Priya
Updated on 10-Oct-2023 16:03:09

171 Views

In HTML tag is used to make text appears bold. It is a parsed tag shows importance of a text. This tag supports all global and event attributes in HTML. Following is the usage of strong tag in HTML - text… It has opening and closing tags. In HTML we use tag for specifying bold text without extra importance. Example Following example demonstrates the usage of tag in HTML − Tutorial Point Normal text without strong tag. ... Read More

Create a media resources for media elements, defined inside video or audio elements in HTML5

Bhanu Priya
Updated on 10-Oct-2023 15:17:41

247 Views

HTML5 supports five media elements, which are helpful in creating media resources. The different media tags are , , , and . These tags are used to change the development, let us discuss about each element in detail with an example − The tag If you want to play videos on your web page, then HTML element can be used for it. HTML element provides a standard way to embed videos in a web page. The simple code to embed a video is as follows − ... Read More

Create small text in HTML

Bhanu Priya
Updated on 10-Oct-2023 15:13:57

346 Views

If we want to set a small font size in HTML document use tag. This tag is used to decrease the font size by one that is from medium size to small size or extra-large to large size. There are two ways, we can use this tag in HTML: In a nested form In a non-nested form Syntax Following is the usage of small font tag in HTML - text… It has opening and closing tags. It supports global as well as event attributes. Example Following example demonstrates the usage of small tag ... Read More

How to display completion progress of a task in HTML5?

Bhanu Priya
Updated on 10-Oct-2023 14:56:29

207 Views

If we want to serve a visual demonstration of completion of any task or goal, we use element. To display how much progress has been towards task completion we use max and value attributes. Following is the syntax of tag in HTML - Progress has open and closing tags. It is a new semantic element in HTML5. For displaying a file is being uploaded also this progress bar is used. The HTML tag supports the following attributes − Attribute Value Description max Max It should have a value greater than ... Read More

How to display a short quotation in HTML?

Bhanu Priya
Updated on 10-Oct-2023 14:54:08

250 Views

In Html, in order to insert quoted text in browser page, we use quotation element. The quoted text appears different when compared to normal text. What is element? This element is used to insert quotation marks to the set of text in HTML document. It has opening and closing tag. Following is the syntax of element in HTML. text…… Example Following is an example using which we are trying to display a short quotation in HTML – Usage of Quotations ... Read More

How to add preformatted text in HTML?

Bhanu Priya
Updated on 10-Oct-2023 14:51:57

491 Views

In HTML tag is used for preformatted text. The text in between open and closed tags displayed exactly as written in HTML document. The usage of preformatted text is shown below - ---- The element displayed the text with preserved space and line breaks and also represents in a fixed-width font. Example Following example, which tries to add preformatted text in HTML − Different variations on Displaying Paragraph The pre element displayed the text with preserved space and line breaks ... Read More

Advertisements