
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
Shubham Vora has Published 957 Articles

Shubham Vora
9K+ Views
To create shimmer effect using CSS, we will be using CSS animations and linear-gradient properties. Shimmer effect is an animation effect used in many webpages while loading the web page. In this article we are having a layout of a box having two other child boxes, our task is to ... Read More

Shubham Vora
9K+ Views
To get the number of days between two dates in JavaScript, we will be understanding four different approaches with stepwise explaination and example codes. In this article, we are having two different dates and our task is to get the number of days between two dates in JavaScript. Approaches to ... Read More

Shubham Vora
831 Views
To convert string to number in JavaScript, it helps user to perform accurate mathematical operations, comparisons and handling form inputs. We will be discussing various approaches with example codes for each approach to convert string to number in JavaScript. In this article, we are having a string value, our task ... Read More

Shubham Vora
6K+ Views
CSS :even and :odd psuedo classes are used to select or target the alternative child elements. CSS even and odd psuedo class is used with list items to create alternate style like text color, background which increases the readability. In this article, we are having an unordered list. We will ... Read More

Shubham Vora
4K+ Views
To shake a button on hover using HTML and CSS, we should have basic understanding of CSS animations and keyframes. We will be understanding how to utilize CSS animation and keyframes to apply shaking effect to a button on hovering. In this article, we are having buttons wrapped inside a ... Read More

Shubham Vora
4K+ Views
Programming a slideshow using HTML and CSS, we should have a basic understanding of HTML and CSS animations. Slideshow displays a series of content in a sequential manner with smooth transitions. In this article, we will discuss how to create a slideshow using HTML and CSS without using JavaScript. We ... Read More

Shubham Vora
8K+ Views
To set the opacity only to background color not on the text in CSS, it can help in creating overlays cards or popups. We can decrease the background color's opacity by decreasing the alpha variable's value while assigning the color value to the background color property. In this article, we ... Read More

Shubham Vora
14K+ Views
CSS wildcard selectors allow us to select an HTML element containing the particular substring in the value of the particular attribute, such as classes, id or other attributes. It is useful when style is applied to multiple elements having a common pattern in their attributes. In this article, we ... Read More

Shubham Vora
8K+ Views
In this article, we will be understanding the difference between CSS offsetWidth, clientWidth, scrollWidth and difference between offsetHeight, clientHeight, scrollHeight since they return width and height of HTML element respectively. CSS offsetWidth, clientWidth and scrollWidth offsetWidth: ... Read More

Shubham Vora
8K+ Views
To removing border from iframe using CSS can be useful when you don't want unwanted border when you integrate content from other sources on your webpage like youtube video, another webpage etc. An iframe is an inline frame that allows us to embed another document within the current HTML document. ... Read More