
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Riya Kumari has Published 74 Articles
Riya Kumari
35K+ Views
CSS (Cascading Style Sheets) is a stylesheet language used to style the HTML elements in a webpage. A CSS framework is a library which enables the developers to design more standard-compliant websites using CSS in an easier way. These libraries are ready-to-use so there is no need of writing the ... Read More
Riya Kumari
10K+ Views
To create share button with different social handles using HTML and CSS, we will be using basic CSS properties and HTML tags. In this article, we will be understanding stepwise process to create share button with different social handles. In this article, we are having six HTML buttons and our ... Read More
Riya Kumari
11K+ Views
To align checkbox and its label on cross-browsers using CSS, we can use various CSS properties. Different browsers may have different styles and rendering methods while displaying checkboxes. In this article, we will be discussing three different approaches to align checkbox and its label on cross-browsers using CSS for consistent ... Read More
Riya Kumari
2K+ Views
Nesting and Grouping in CSS helps developers to write short and precise codes that are easy to run. Lengthy codes are always disadvantageous for the developers as it becomes difficult to debug the codes and increases the loading time for the web pages, decreasing the readability of the websites. ... Read More
Riya Kumari
5K+ Views
To apply multiple transform property to an element using CSS, we will be using two different methods which uses transformation property. In first approach we will be using two function of transform property whereas in second method we will be using nested class to apply different transformations. In this article, ... Read More
Riya Kumari
21K+ Views
To align flexbox columns left and right using CSS, we can use various flexbox properties. In this article, we will learn and understand three different approaches to exaplain how to align flexbox columns left and right using CSS. We have created two flexible columns using div and flexbox, our task ... Read More
Riya Kumari
849 Views
Extrema are such numbers which are either minima or maxima. In other words, it is a number or element which is either greater than or less than both of its adjacent values. Suppose we have an array A with n elements. An element of this array A[i] is called a ... Read More
Riya Kumari
368 Views
Palindromes are series of letters, numbers or characters which have same starting and ending point. Also, they are same when read from left to right and right to left. A subsequence of a string is a new string which is made by removing some of the characters from the original ... Read More
Riya Kumari
373 Views
Palindromic pathways are very useful in solving various problems involving patterns and sequences. It can be used in finding correct path in a maze without reversing, palindromes in a sequence of letters, etc., It can also be used to identify symmetric patterns and structures. In this article, we will discuss ... Read More
Riya Kumari
406 Views
Permutations are possible in strings as well as numbers. A string can have permutations equal to the factorial of its number of characters. These permutations can be palindromic under certain circumstances. In this article, we will discuss about how palindromic permutations occur in a string. We will also find the ... Read More