Found 2202 Articles for HTML

HTML

George John
Updated on 29-Jun-2020 09:05:05

277 Views

The autofocus attribute of the element is used to set focus to the button whenever page loads.Following is the syntax −Above, we have set autofocus to a button. Let us now see an example to implement the autofocus attribute of the element −Example Live Demo    Demo Heading    This is a demo line.    Demo OutputThis will produce the following output displaying the focus is on button 1 −In the above example, we have set the autofocus attribute for the button element −    Demo Now, when the page loads, the focus would be on ... Read More

HTML
cite Attribute

Arjun Thakur
Updated on 30-Jul-2019 22:30:26

256 Views

The cite attribute of the element is used to set the source of a quotation. Following is the syntax −Above, url is the source of the quotation. Let us now see an example to implement the cite attribute of the element −Example Live Demo Magento Magento as stated on the official website:    Magento Commerce, part of Adobe Commerce Cloud, offers a one-of-a-kind eCommerce solution with enterprise power,       unlimited scalability, and open-source flexibility for B2C and B2B experiences.    Magento allows you to create unique, full-lifecycle customer experiences proven to generate more sales. ... Read More

HTML Tag

Chandu yadav
Updated on 29-Jun-2020 09:06:21

141 Views

The element in HTML is used to form the text bigger than the default.Note: The element is not supported in HTML Let us now see an example to implement the element in HTML−Example Live Demo    Demo Heading    This is demo text!    This demo text is bigger than the default text. OutputIn the above example, first we have set a normal text −This is demo text!After that, we have set another text using the element −           This demo text is bigger than the default text.    

HTML <base> target Attribute

Ankith Reddy
Updated on 29-Feb-2024 14:31:18

501 Views

The target attribute of the element is used to set the default target for the hyperlinks in a document. Syntax Following is the syntax − Here, _blank is used to open the linked document in new window or tab, _self opens the linked document in the same frame as it was clicked, _parent opens the document in the parent frame, _top opens the linked document in the entire body of the window, frame opens the linked document in a named frame. Example Let us now see an example to implement the target attribute of the ... Read More

HTML canvas fill() Method

George John
Updated on 30-Jul-2019 22:30:26

873 Views

The fill() method in HTML canvas is used to fill the current drawing path. The default is black. The element allows you to draw graphics on a web page using JavaScript. Every canvas has two elements that describes the height and width of the canvas i.e. height and width respectively.Following is the syntax−ctx.fill();Let us now see an example to implement the fill() method of canvas −Example Live Demo Your browser does not support the HTML5 canvas tag. var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.beginPath(); ... Read More

HTML Tag

Chandu yadav
Updated on 30-Jul-2019 22:30:26

70 Views

The element in HTML in HTML 4 was used to underlined a text on a web page, but HTML5 redefined to display text different from normal text.Let us now see an example to implement the tag−Example Live Demo Shortcut Keys Use the following shortcut keys: Cut: CTRL+X Copy: CTRL+C Paste: CTRL+V Undo: CTRL+Z OutputIn the above example, we have used the tag to display a text other than the default normal text−Use the following shortcut keys: Cut: CTRL+X

HTML Tag

Ankith Reddy
Updated on 30-Jul-2019 22:30:26

122 Views

The element in HTML is used to set keyboard input. Since the element deprecated now, therefore use instead.Note: The tag is not supported in HTML.Let us now see an example to implement the tag in HTML−Example Live Demo Shortcut Keys Use the following shortcut keys: Cut: CTRL+X Copy: CTRL+C Paste: CTRL+V Undo: CTRL+Z OutputIn the above example, we have set the shortcut keys using the element−Paste: CTRL+VWe have set one of the shortcut for pasting text as shown above −CTRL + V

HTML