Bhanu Priya has Published 1449 Articles

Difference between SAPUI5 controls and HTML5 Controls

Bhanu Priya

Bhanu Priya

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

755 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

4K+ 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

1K+ 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

What is the difference between id and name attributes in HTML?

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 16:27:25

3K+ Views

ID attribute ID is an input form element, and it has nothing to do with data contained within the element. Input element ids are for hooking the element with JavaScript and CSS. By using id attribute, we can validate and manipulate the value of an element at client side. In ... Read More

What is the difference between HTML tags <div> and <span>?

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 16:21:13

3K+ Views

We can use both DIV and SPAN tags as a Container, as they both have their own specialty. Both are HTML5 tags. First let us discuss about DIV Tag in detail with examples. DIV TAG DIV helps in separating the data like text, images, navigation bar etc., we can also ... Read More

What are valid values for the id attribute in HTML?

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 15:54:16

2K+ Views

The ID attribute in HTML is called as unique identifier for the element. It helps in identifying an area in a web page by using CSS styles, targets for scripts and anchor links. First let us see, what is the use of ID attributes in HTML − The ID attribute ... Read More

How can I use multiple submit buttons in an HTML form?

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 15:20:10

13K+ Views

Generally, the forms in HTML uses a single submit button which saves the record when button is pressed. In some cases, we need a form with additional submit buttons such as "accept" or "reject". Those type of buttons usually attempt a state transition while updating the record. A form with ... Read More

Using HTML control and SAPUI5 controls and advantages of using UI5 controls over HTML controls

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 14:55:13

444 Views

First of all, let us try to understand what controls are. Controls define the appearance and behavior of screen areas. It consists of Control name. What is SAPUI5? It is a framework used to develop web applications in mobile and desktop where a large collection of JS libraries are ... Read More

How to align two divs horizontally in HTML?

Bhanu Priya

Bhanu Priya

Updated on 04-Oct-2023 14:44:54

10K+ Views

The division tag name itself indicates that it makes divisions, and displays layouts in web pages. The DIV tag can be applied to text, images, navigation bar etc., where a separate section can be created. This tag consists of open and close tags , and both the tags are ... Read More

How to place two divs next to each other in HTML?

Bhanu Priya

Bhanu Priya

Updated on 29-Sep-2023 16:20:55

50K+ Views

DIV tag is nothing but a division tag, the name itself indicates that it makes divisions for the content on the web pages. It helps in separating the data like text, images, navigation bar etc., we can also create particular sections by using the DIV tag. A DIV tag consists ... Read More

Advertisements