Category: Web Development
-
What is an iframe in HTML? – HTML inline frame
You might have come across websites that use embedded YouTube videos or sites that use embedded Google Maps. An iframe-based code is used to embed a YouTube video or a google map. What is an iframe? We use an iframe to embed a webpage or other web resource inside another web page. Let’s see how […]
-
How to use CSS external style sheets in HTML
In this post, we will know about external style sheets in CSS. If you want to know about embedded style sheets in CSS, then here’s the link – https://developerxon.com/2022/07/06/embedded-style-sheets-in-css/ What is external style sheet? An external style sheet is a way to apply style information to a webpage by creating a separate CSS file and […]
-
Gradient borders – CSS
In this post, we will learn to create gradient borders in CSS. We will know how to apply gradient borders in CSS to make the content of a webpage look awesome. How to create gradient borders in CSS? Here are the steps that I followed. To create a gradient border, I used two <div> elements. […]
-
Difference between some() and every() in javascript – Javascript array methods
Confused between the some() and every() methods of the Javascript array? Don’t worry. After reading this post, you won’t have any confusion between these two Javascript array methods. Difference between Array.every() and Array.some() In simple words, the every() method checks whether each element of an array is meeting the condition, whereas, the some() method checks […]
-
Javascript Array every() method
In this post, I will tell you about a very useful Javascript Array method. So, without further ado, let’s begin. Array.every() method in javascript Let me ask you a question. How would you check whether the marks of all the students in an array are greater than 80? You have to return true if all […]