Found 8591 Articles for Front End Technology

Set the character encodings that are used for form submission in HTML

Govinda Sai
Updated on 02-Mar-2020 12:39:07

234 Views

The accept-charset attribute in HTML is used to include the character encodings for form submission.ExampleYou can try to run the following code to implement accept-charset attribute in HTML −           File Upload Box                                  

Set the types of files that the server accepts in HTML

Nitya Raut
Updated on 02-Mar-2020 12:35:56

179 Views

Use the accept attribute to set the types of files that the server accepts in HTML. Use the attribute only with .ExampleYou can try to run the following code to work with accept attribute −           File Upload Box                                  

How do we create preformatted text in HTML?

Chandu yadav
Updated on 02-Mar-2020 12:35:10

188 Views

Use the tag to create preformatted text. Note − The tag deprecated.ExampleYou can try to run the following code to learn how to create preformatted text in HTML −           HTML xmp Tag               HTML tags include       for bold text, for italic text.    

How to indicate a potential word break point within a section in HTML?

usharani
Updated on 02-Mar-2020 12:34:30

146 Views

The HTML tag defines a potential line breakpoint if needed. This stands for Word Break Opportunity.ExampleYou can try to run the following code to learn how to implement tag in HTML −           HTML wbr Tag               The browser to extend the document window beyond the size       of the viewing pane and the poor user must scroll right    

How to add text tracks used in media players in HTML5?

Srinivas Gorla
Updated on 02-Mar-2020 12:33:51

309 Views

Use the tag in HTML5 to add text tracks used in media players. You can try to run the following code to learn how to add text tracks used in media players in HTML5 −Example                                                            Your browser does not support the video element.          

How to add a date and time in HTML5?

Vrundesha Joshi
Updated on 02-Mar-2020 12:23:18

4K+ Views

Use the tag to add date and time. The HTML tag is used for displaying the human readable date and time.The HTML tag also supports the following additional attribute −AttributeValueDescriptiondatetimedatetimeIt is a machine readable date timeExampleYou can try to run the following code to learn how to add date and time in HTML5 −           HTML time Tag               The time is 08:30 pm    

How to add a variable in HTML?

Ramu Prasad
Updated on 04-Oct-2023 21:45:38

24K+ Views

Use the tag in HTML to add a variable. The HTML tag is used to format text in a document. It can include a variable in a mathematical expression. Example You can try to run the following code to add a variable in HTML −           HTML var Tag               The equations: 2x - 4z = 2y + 3 and          x + 5z = 3y + 6    

How do we create underlined text in HTML?

Nikitha N
Updated on 02-Mar-2020 12:31:16

536 Views

The HTML tag is used to underline a text. You can try to run the following code to create underlined text in HTML −Note − This tag is deprecated now and should not be used. Use CSS instead.Example           HTML u Tag               Qries.com is the next generation knowledge management system.    

How do we add a table row in HTML?

Alshifa Hasnain
Updated on 19-Feb-2025 17:50:49

861 Views

In this article, we will learn to add a table row in HTML. Tables are a fundamental part of web development, used to display structured data in rows and columns. In HTML, you can add table rows using the (table row) element inside a structure. Attributes The HTML tag also supports the following additional attributes − Attribute Value ... Read More

In HTML how to create table header?

Krantik Chavan
Updated on 27-May-2020 22:28:51

563 Views

Use the tag in HTML to create table header. The HTML tag is used in adding a header to a table. The thead tag is used in conjunction with the tbody tag and the tfoot tag in determining each part of the table (header, footer, body).The HTML tag also supports the following additional attributes −AttributeValueDescriptionalignrightleftcenterjustifycharDeprecated − Visual alignment.charcharacterDeprecated − Specifies which character to align text on. Used when align = "char"charoffpixels or %Deprecated − Specifies an alignment offset (either in pixels or percentage value) against the first character as specified with the char attribute. Used when align = "char"valigntopmiddlebottombaselineDeprecated − Vertical ... Read More

Advertisements