Bhanu Priya has Published 1598 Articles

Create editable content in an HTML document

Bhanu Priya

Bhanu Priya

Updated on 06-Oct-2023 14:37:28

502 Views

In Html, we can edit the content by using contenteditable attribute, it specifies whether the elements content is editable or not by the user. The property of contentEditable is set or returns if the content of an element is editable. Syntax The usage/syntax of editable content in HTML is ... Read More

How do we include a section in an HTML document?

Bhanu Priya

Bhanu Priya

Updated on 06-Oct-2023 14:30:29

799 Views

Section is one of the tag used in HTML, which defines the section of document like header, footers, chapters etc., Section tag divided the content of document into two parts, section and subsections. It is useful when there is a requirement of two headers or footers or chapter ... Read More

How do we add a definition term in HTML?

Bhanu Priya

Bhanu Priya

Updated on 06-Oct-2023 14:25:24

263 Views

The definition term is represented as tag in HTML, it describes the name or term in a description list. The define term is conjunction with and tags. tag is used to describe each name or term tag defines a description list. define ... Read More

How to create conditional comments in HTML?

Bhanu Priya

Bhanu Priya

Updated on 06-Oct-2023 14:21:52

800 Views

Conditional comments are nothing but conditional statements which are used to hide or provide HTML the source code from browser. First let us discuss about HTML comments then we will know more about conditional comments in HTML − HTML comments is not an executable statement; they are used ... Read More

How to Insert Hyperlink in HTML Page?

Bhanu Priya

Bhanu Priya

Updated on 05-Oct-2023 12:18:46

159K+ Views

To insert a hyperlink in a HTML page, we have to utilize the anchor tags and labels, which are used to characterize the connections. The tag demonstrates where the hyperlink begins and the < / a> tag shows where it closes. Whatever text gets added inside these ... Read More

How to use Python Regular expression to extract URL from an HTML link?

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 18:14:33

2K+ Views

URL is an acronym for Uniform Resource Locator; it is used to identify the location resource on internet. For example, the following URLs are used to identify the location of Google and Microsoft websites − https://www.google.com https://www.microsoft.com URL consists of domain name, path, port number etc. The URL ... Read More

How to use external “.js” files in an HTML file?

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 17:30:46

6K+ Views

What is JavaScript? JavaScript is a client-side scripting language which is used to create a dynamic webpage. It is integrated with the HTML code. JavaScript code is inserted between and tags as shown below. document.getElementById("demoId").innerHTML = "JavaScript Example"; JavaScript is a ... Read More

Difference between SAPUI5 controls and HTML5 Controls

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 16:51:46

477 Views

What is SAPUI5? It is a framework used to develop web applications in mobile and desktop where a large collection of JS libraries are present. But these JS libraries cannot be used alone. They have to be integrated into CSS along with JS for developing interactive internet applications. SAP can ... Read More

What is CDATA in HTML?

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 16:41:39

2K+ Views

The full form of CDATA is Character Data, it is one of the sections in XML which is used to interpret character data. It treats the text data as raw text in character format. The Tags inside a CDATA section are not treated as markup and entities are also not ... Read More

Should I write my script in the body or the head of the HTML?

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 16:32:33

510 Views

In HTML, the script tag can be inserted either in head section or in body section, generally the java script code is inserted between script open and close tags. //JavaScript code here We can insert any number of scripts in an HTML document. ... Read More

Advertisements