Found 8895 Articles for Front End Technology

How do we style HTML elements using the span tag ?

Lokesh Badavath
Updated on 19-Oct-2022 06:13:16

2K+ Views

We use tag to color a part of text or a part of the document. This tag is mainly used to group similar content together for easy styling. We use inline style for tag, as it applies a style to inline elements. If we want to make some text or any other content different from the rest, we wrap it in a tag, and add class attribute to identify, then add attribute value for styling. Syntax Following is the syntax for the tag. Text… Example 1 Given below is an example to style HTML ... Read More

How do we style HTML elements using the division tag
?

Lokesh Badavath
Updated on 19-Oct-2022 06:12:08

439 Views

The tag is used as the container for the HTML elements. With the help of this tag, we can easily define a section of a HTML Document. It is also used to group large sections of HTML elements together and easily format them. The tag is used with block-level elements. The tag accepts all the CSS properties and styles the elements in it using attributes like class and id. Syntax Following is the syntax for the tag. Content… Example 1 Given below is an example to add style to the division tag in HTML. ... Read More

How we can put three divisions

Lokesh Badavath
Updated on 19-Oct-2022 06:10:23

9K+ Views

The tag defines the division of the HTML document. This tag is mainly used to group similar content together for easy styling and also used as the container for the HTML elements. We use CSS property to place three divisions tags side by side in HTML. The CSS property float is used to achieve this. Syntax Following is the syntax for the tag. Content… Example 1 Following is the example to place three division classes side by side in HTML using CSS property. DOCTYPE html> ... Read More

How we can put two divisions

Lokesh Badavath
Updated on 19-Oct-2022 06:09:16

9K+ Views

The tag defines the division of the HTML document. This tag is mainly used to group similar content together for easy styling. It is also used as the container for the HTML elements, we can easily style this tag using the class or id attribute. We can place content inside the tag. Using CSS property, we can place two tags side by side in HTML. By styling we can place the two division classes side by side. Syntax Following is the syntax for the tag. Content… Example 1 Following is the example to place ... Read More

How to create a Bibliography with HTML?

Lokesh Badavath
Updated on 18-Oct-2022 11:28:35

2K+ Views

Bibliography is a list of the written sources of information on a subject. We use tag in HTML, to create a bibliography section. The tag defines the work on a subject. The tag is also used to add work title a song, a painting, a movie, etc. It indicates citation and whatever comes inside the tag represents work title. The text between the tag renders in italic format. We use tag to list the items and tag to add the title of the subject. Syntax Following is the syntax for the tag. ... Read More

How exactly does

How to print a triangle formed of '#' using JavaScript?

Shubham Vora
Updated on 15-Sep-2022 12:39:41

4K+ Views

In this tutorial, we will learn to print a triangle formed of '#' using JavaScript. You need to use nested loops to print a triangle formed of '#' in JavaScript. Loop is one of the features in programming languages that executes a set of instructions a several till the condition does not evaluate as false. Nested loops are the loops that contain a loop inside a loop itself. We are going to use two of loops in JavaScript to execute our task. Following are the loops we are using to print a triangle formed of '#' − for loop ... Read More

Why in JavaScript, “if ('0' == false)” is equal to false whereas it gives true in “if(0)” statement?

mkotla
Updated on 16-Jun-2020 13:28:37

1K+ Views

Let’s see the conditions one by one − if(‘0’ == false)It follows the following rule −If Type(y) is Boolean, return the result of the comparison x == ToNumber(y)The == does type coercion. This means an explicit type conversion is requested to match the type of the two operands. The left side '0' is converted to a number 0. On comparing the two numbers, and since 0 equals 0, the result is true. In this case, this does not work since it does not implies about the truish/falsy nature of the '0' string, since it got coerced before it was compared.if(0)This checks ... Read More

How to print current year in JavaScript?

Giri Raju
Updated on 16-Jun-2020 13:27:38

1K+ Views

To get current year in JavaScript, use the getFullYear() method.ExampleYou can try to run the following code to print current year −Live Demo           Click below to get the current year:       Display Year                      function display() {             var date = new Date();             var res = date.getFullYear();             document.getElementById("test").innerHTML = res;          }          

How to print object array in JavaScript?

Shubham Vora
Updated on 15-Sep-2022 12:34:19

19K+ Views

In this tutorial, we will learn how to print object arrays in JavaScript. What is an object array or an array of objects? An array of objects is used to store a fixed-size sequential collection of identical elements and store many values in one variable. Next, we will see the options to print an array of objects in JavaScript. Using the stringify() Method of the JSON Object Here, we will learn how to stringify the object array. To correctly display an array of objects, we need to format the array as a JSON string. JSON.stringify() formats the array and gives ... Read More

Advertisements