Nikhilesh Aleti has Published 93 Articles

From JSON object to an array in JavaScript

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 12-Sep-2023 03:27:16

42K+ Views

The JSON (JavaScript object notation) Object can be created with JavaScript. JSON Object is always surrounded inside the curly brackets {}. The keys must be in strings and values must be in valid JSON data type. The data types like string, number, object, Boolean, array, and Null will be supported ... Read More

Convert an image into Blur using HTML and CSS

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 07-Sep-2023 15:14:08

2K+ Views

In general, blur is a visual effect of human eye that happens when the viewer cannot be able to see the details of the object clearly. In HTML, we can apply the blur effect to elements on webpage (such as images) using CSS properties. To do so, we use the ... Read More

Converting string to an array in JavaScript

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 02-Sep-2023 15:45:46

48K+ Views

The task we need to accomplish is converting an input string to an array in JavaScript. Whenever we try to break a string word into characters or a sentence into words – splitting into arrays, we have some built-in methods to convert string to an array. In this article, we ... Read More

How to create Olympics logo using HTML and CSS?

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 31-Aug-2023 14:52:59

1K+ Views

The given task in this article is to create an Olympics logo using only HTML and CSS. The “Olympic logo” consists of five circles (with five different colors such as blue, black, red, yellow, and green) which are intertwined by equal dimensions. These five colored rings represent the five inhabited ... Read More

How background attribute is deprecated in HTML5?

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 31-Aug-2023 14:50:47

219 Views

In this article, we will discuss about the background attribute and how it is deprecated in HTML5. What is Background Attribute? In HTML, the “background” can be used as an attribute with an HTML element (such as div, table, body etc.). We can specify an image to set background of ... Read More

Difference between RGB vs RGBA color format

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 29-Aug-2023 17:33:17

519 Views

In HTML, the RGB i.e. (red, green, and blue) specifies the shades or intensity of the color with a value between 0 and 255. The RGB color model has a total of 256 x 256 x 256 = 16777216 possible colors. By adjusting the RGB values we can come up ... Read More

Difference between normal links and active links

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 29-Aug-2023 17:31:48

1K+ Views

The hyperlinks, which are also known as links, are crucial components in websites nowadays. These are clickable and can be used to navigate between source webpage to different pages or the sections in the same webpage. In most of the websites, the links will appear as underlined and differently colored. ... Read More

Difference between link and anchor Tags

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 29-Aug-2023 17:23:46

6K+ Views

While developing a website, we may come across a situation where we need to create a hyperlink to another webpage or to a certain part of the webpage (these links are clickable). Additionally, there can be a situation where we need to add stylings to the content present in the ... Read More

Difference between “blank” and “_blank” target attributes in HTML

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 29-Aug-2023 17:19:19

620 Views

Sometimes, we may have noticed links on webpages that leads us to a different webpage. In some websites, if we click on that certain links, they will open in a new browser tab or on a new window and some websites reuse one new browser tab for subsequent clicks on ... Read More

Creating an Animated Side Navbar using HTML and CSS

Nikhilesh Aleti

Nikhilesh Aleti

Updated on 29-Aug-2023 17:16:54

680 Views

A Navigation Bar is a GUI element which allows the users to navigate through a website or application. It is typically a list of links at the top or side of the screen and assists users in navigating to various areas or pages within the website. Navigation bars are implemented ... Read More

Advertisements