Found 8591 Articles for Front End Technology

How to indicate long quotations in an HTML document?

Sravani S
Updated on 24-Jun-2020 08:40:01

695 Views

Use the tag to indicate long quotations. The HTML tag is used to include long quotations (i.e. quotations that span multiple lines). It should contain only block-level elements within it and not just plain text.The following is the attribute −AttributeValueDescriptioncite URLURL of the quote, if it is taken from the web.ExampleYou can try to run the following code to implement tag in an HTML document −           HTML blockquote Tag               Browsers generally render blockquote text as indented text. If your quoted text needs to display ... Read More

How do we add a push button to HTML?

Arjun Thakur
Updated on 24-Jun-2020 08:44:50

3K+ Views

Use the tag in HTML to add a push button. The HTML tag is used for creating a button within HTML form. You can also use tag to create similar buttons.The following are the attributes of the tag −AttributeValueDescriptionautofocusAutofocusSpecifies that the button should have input focus when the page loads.disabledDisabledSpecifies the button is disabled.formform_idSpecifies the forms to which button belongs.formactionURLSpecifies the link where the form submits.formenctypeapplication multipart/form-data text/plainSpecifies how the form data is encoded before sending it to server.formmethodget postSpecifies how to send form data.formnovalidateFormnovalidateSpecifies that the form data should not be validated.formtarget_blank_self _parent _topSpecifies where the response should ... Read More

Enclose a text to make it blink with HTML.

Ramu Prasad
Updated on 03-Mar-2020 06:25:20

219 Views

Use the tag to blink a text. The HTML tag is used to enclose a text to make it blink.You can try to run the following code to implement tag − Note − Do not use this element as it is obsolete.Example           HTML blink Tag               This text will blink in Netscape Version 5.0    

How to display ruby annotation in HTML5?

Yaswanth Varma
Updated on 11-Oct-2023 16:53:09

619 Views

Annotations are external remarks that can be added to a Web document or to a specific section of a document. They can be comments, notes, explanations, or other types of remarks. Since they are external, any Web document can be independently annotated without needing to change the actual document. Let’s jump into the article to learn about the ruby annotation in HTML5. Ruby annotation in HTML5 The HTML element symbolizes brief comments that are displayed above, below, or next to the main text and are typically used to demonstrate how to pronounce East Asian characters. Other types of text can ... Read More

How to display text ruby annotation in HTML5?

Anvi Jain
Updated on 03-Mar-2020 06:23:49

289 Views

Use the tag to display text ruby annotation. The HTML5 tag is used for pronunciation of character in ruby annotations. These are for showing pronunciation of East Asian characters.ExampleYou can try to run the following code to display text ruby annotation −           HTML Rt Tag                        漢 (Kan)          字 (ji)          

How to set what browsers will show that do not support the ruby element?

V Jyothi
Updated on 03-Mar-2020 06:22:50

152 Views

The HTML tag specifies to show browsers that do not support the ruby annotations. Ruby Annotations are used in East Asian typography.ExampleYou can try to run the following code to implement tag in HTML −           HTML Rp Tag                        漢 (Kan)          字 (ji)          

How to create a progress bar in HTML?

Prabhas
Updated on 03-Mar-2020 06:22:08

7K+ Views

Use the tag to create a progress bar in HTML. The HTML tag specifies a completion progress of a task. It is displayed as a progress bar. The value of progress bar can be manipulated by JavaScript.The following are the attributes −AttributeValueDescriptionmax maxIt should have a value greater than zero and a valid floating point numbervalue valueSpecifies how much of the task that has been completed. It should be a floating point number between 0 and max or 0 and 1 if max is omittedExampleYou can try to run the following code to learn how to create a ... Read More

How to create a section in a document in HTML?

Jennifer Nicholas
Updated on 03-Mar-2020 06:20:17

10K+ Views

Use the tag to add a section in a document. The HTML tag is used for defining a section of your document. With the div tag, you can group large sections of HTML elements together and format them with CSS.ExampleYou can try the following code to create a section −           HTML div Tag                            Welcome to our website. We provide tutorials on various subjects.           The following is the css file style2.css#contentinfo p {    line-height: 20px;    margin: 30px;    padding-bottom: 20px;    text-align: justify;    width: 140px;    color: red; }

How do we add a sample computer code in HTML?

seetha
Updated on 29-May-2020 23:04:24

175 Views

Use the tag to display a sample computer code. The HTML tag is used to display the output of a computer program.ExampleYou can try to run the following code to implement tag in HTML −           HTML samp Tag               The header file always starts with #include.    

How to add an inline layer in HTML?

Govinda Sai
Updated on 03-Mar-2020 06:18:41

400 Views

Use the tag to add an inline layer. The HTML tag is used to create a layer that occupies space in the containing text flow. Subsequent content is placed after the space occupied by the .This is in contrast to the tag, which creates a layer above the containing text flow, allowing subsequent content to be placed under the layer just created.The HTML tag supports the following attributes −AttributeValueDescriptionabovelayernameThe name of the inline layer that will be positioned directly above the current layer in the z-order.backgroundURLA filename or URL for an image upon which the inline ... Read More

Advertisements