Found 8591 Articles for Front End Technology

How do we include an inline sub window in HTML?

vanithasree
Updated on 29-May-2020 23:06:51

508 Views

Inline sub window is an iframe and you can include it using the tag.The HTML tag supports the following additional attributes −AttributeValueDescriptionalignleftrighttopmiddlebottomSpecifies how to align the iframe according to the surrounding text.frameborder10Specifies whether or not to display border around the frame.heightpixelsSpecifies the height of the inline frame.longdescURLA URL to a long description of the frame contentsmarginheightpixelsAllows you to specify the width of the space between the left and right of the frame's borders and the frame's content. The value is given in pixels. For example marginwidth = "10".marginwidthpixelsSpecifies the margin, in pixels, between the frame's contents and it's ... Read More

How do we add a noscript section in HTML?

Yaswanth Varma
Updated on 15-Dec-2022 14:54:30

584 Views

The task we are going to perform in this article is about how do we add a noscript section in HTML. For browsers that do not support script tags or that have been configured by the user to deactivate script, HTML uses the tag to show the text. Both the and the tags contain this tag. Note − This element is only utilised by browsers that do not support scripting. Syntax Following is the syntax for nonscript Contents... Let’s dive into the following examples, to know more about adding a noscript section in HTML. Example ... Read More

How do we add a noframe section in HTML?

radhakrishna
Updated on 03-Mar-2020 06:01:14

264 Views

Use the tag to add a noframe section. The HTML tag is used to handle the browsers which do not support tag. This tag is used to display an alternate text message.Example           HTML noframes Tag                                                 Your browser does not support frames.                    

How to include content to be presented by browsers that do not support the tag in HTML?

Srinivas Gorla
Updated on 03-Mar-2020 06:00:35

113 Views

The HTML tag is used to handle browsers which do not support the tag. The tag makes it easy to supply alternative content that tells users what they are missing.Example           HTML noembed Tag                                  

Execute a script when the element gets user input in HTML?

mkotla
Updated on 23-Nov-2023 14:03:27

1K+ Views

Use the oninput event attribute to trigger when an element gets user input. You can try to run the following code to implement oninput attribute − Example           Write your name below:                            function display() {             var p = document.getElementById("myid").value;             document.getElementById("test").innerHTML = "Your answer is " + p;          }          

Execute a script when the seeking attribute is set to true indicating that seeking is active in HTML?

Smita Kapse
Updated on 29-May-2020 22:51:50

129 Views

Use the onseeking attribute to indicate that seeking is active in a video in HTML.ExampleYou can try to run the following code to execute a script when the seeking attribute is set to true indicating that seeking is active in HTML −                                        Your browser does not support the video element.                      function display() {             alert("Seeking starts!");          }          

How do we embed audio in web pages in HTML5?

Giri Raju
Updated on 03-Mar-2020 05:57:56

398 Views

Use the tag to embed audio in a web page in HTML5. You can try to run the following code to implement tag −Example           HTML audio Tag               Click on Play button...       (Song: Kalimba which is provided as a Sample Music in Windows)                          

How do we add bold text in HTML?

Nishtha Thakur
Updated on 03-Mar-2020 05:58:35

2K+ Views

To display bold text, use the tag. The HTML tag is used for emphasizing an important text.ExampleYou can try to run the following code to implement tag in HTML −           HTML strong Tag               This is an important text    

How do we add glossary definitions in HTML?

Anvi Jain
Updated on 24-Jun-2020 08:31:31

2K+ Views

Use the tag in HTML to add the glossary definitions. The HTML tag is used for declaring a definition list. This tag is used within tag.A definition list is similar to other lists but in a definition list, each list item contains two entries; a term and a description.ExampleYou can try to run the following code to implement tag −           HTML dl Tag                        Definition List          A list of terms and their definitions/descriptions.          HTML          An HTML tutorial.          PHP          An PHP tutorial.          

How to add an article in HTML5?

Yaswanth Varma
Updated on 24-Nov-2023 01:41:31

1K+ Views

In this article we are going to learn about how to add an article in HTML5. One of the new sectioning elements in HTML5 is the tag. An article is represented in HTML using the tag. More specifically, the content contained in the element is distinct from the rest of the site's content (even though it can be related). Let’s consider the following examples to know how to add an article in HTML5 Example 1 In the following examples we are using inline styling in an article element. ... Read More

Advertisements