Lokesh Badavath has Published 99 Articles

How to set font color in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 29-Aug-2023 07:35:05

161K+ Views

We use the style attribute to set the font color in HTML. The style attribute specifies an inline style for an element, with the CSS color property. The attribute is used with the HTML tag, with the CSS color property. HTML5 do not support the tag, so the ... Read More

How to set background color in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 29-Aug-2023 07:08:04

244K+ Views

Setting the background color of a web page or an element on the web page, enable us to create unique layouts for the web page. To set the background color in HTML, use the style attribute, with the CSS property background-color inside the body tag of the HTML document. HTML5 ... Read More

How to use an image as a link in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 29-Aug-2023 07:02:36

347K+ Views

We can add image as a link and other HTML elements as a link. A link is a connection from one Web page to another web page. We can add page links to a web page. HTML links are hyperlinks. The tag defines a hyperlink and used to link ... Read More

What is JavaScript AES Encryption?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 14:54:35

15K+ Views

In this article, we are going to learn what is JavaScript AES Encryption. AES is an algorithm developed for the encryption of data. AES uses the same key to encrypt and decrypt data, called the symmetric encryption algorithm. AES encryption is Advanced Encryption Standard (AES) to encrypt the data in ... Read More

Removing an element from the end of the array in Javascript

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 12:06:44

263 Views

In this article, we are going to discuss how to remove an element from the end of the array in JavaScript. An array is a special variable, which can hold more than one value. An array is a collection of items stored at contiguous memory locations. The idea is to ... Read More

Adding an element at the end of the array in Javascript

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 12:05:32

508 Views

In this article, we are going to add an at the end of the array in JavaScript. An array is a special variable, which can hold more than one value. An array is a collection of items stored at contiguous memory locations. The idea is to store multiple items together. ... Read More

How to use input type field with the color picker in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:52:08

2K+ Views

In this article, we are going to learn how to use input type field with the color picker in HTML. We use for input fields with color. It will allow us to select a color from color picker. A color picker will be visible when we will click on ... Read More

How to use input type field with steps in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:47:48

848 Views

In this article, we are going to use input type field with steps in HTML. We use step attribute to specifies the interval between numbers in an element. For example, if our step = "2", numbers could be -4, -2, 0, 2, 4, etc. The step sets the stepping ... Read More

How to allow multiple file uploads in HTML forms.

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:45:24

19K+ Views

In this article, we will learn how to allow multiple files uploads in HTML forms. We use the multiple attributes, to allow multiple file uploads in HTML forms. The multiple attributes work with email and file input types. If you want to allow a user to upload the file to ... Read More

Adding an element at the start of the array in Javascript

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2022 11:09:37

364 Views

In this article, we are going to learn how to add an element at the start of the array in JavaScript. An array is a special variable, which can hold more than one value sequentially. It is a collection of items stored at contiguous memory locations. The idea is to ... Read More

Advertisements