
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
Found 8592 Articles for Front End Technology

5K+ Views
Node.js and ReactJS each tech stack are popularly utilized in modern-day full-stack web programs. ReactJS is used for the front stop and Node.js is used for the again quit. ReactJS is a famous JavaScript library for building user interfaces (UIs). React main objective to simplify the intricate method of building interactive consumer interfaces. Node.js is an open-supply, cross-platform JavaScript runtime environment. It is ideal for handling fast and scalable servers that can handle simultaneous connections with high throughput. Connect Backend to Frontend Before connecting the backend and frontend ... Read More

136 Views
In this article we will learn about sending state/props from one component to another component in React.️ Before moving on, let's see what state and props are in React. We use props and state for dynamic content which get changed from time to time. Props: Props are short form of Properties. These are read-only, meaning they can't be changed, and we pass props from the parent component to the child component. means the child component which has props received from the parent component can't be modified. State: State is used ... Read More

537 Views
Before we learn about the difference, it is important to understand that both the and tags are utilized to provide headers in HTML tables. In HTML, the tag is used to provide a header in a table cell, whereas the tag is used to provide a header for a table group. Both tags are not replaced with one another, and the outputs will remain unchanged, Because the distinction can only be understood by developers or browsers. Let’s dive into the article to get a better understanding of the difference between and tags in HTML ... Read More

1K+ Views
The login form on an image can be found on many websites. An organization that organizes a special event might have a website with a picture of the event and a login form, or a restaurant might have a website with pictures of the restaurant. In such case we use image to make a login or signup. Compared to a standard login or registration form, this layout makes the website more appealing. In order to create a login form on a picture, we only need HTML and CSS. Before we dive into the article let’s have a quick view ... Read More

330 Views
In HTML, a navigation bar is a group of buttons and images arranged either in a row or a column and used as a control site for linking particular webpages. It is regarded as one of the fundamental tools used in web design. Without affecting the content of the pages, the HTML navigation bar separates structure from content and adds creativity to the layout of the website. Using HTML, we create a navigation bar, and CSS gives it a beautiful appearance. Additional functionality may be added using JavaScript. In HTML, a navigation bar can be implemented in a variety of ... Read More

1K+ Views
On web pages, range sliders are used to let users specify a numeric number that must fall between a specified value and not more than that value. In other words, it enables selection of a value from a range that is shown as a slider. Instead of a text entry box like the "number" input type, a Range slider is often represented by a slider or dial control. When an exact numerical value is not required, it is utilized. However, it may be more difficult than you think to add a slider widget to a web page. Yes, you can ... Read More

1K+ Views
A progress bar displays the status of a procedure within an application. A progress bar shows how much of the process has already been completed and how much is still left to do. The various components of the progress bar will be designed using HTML, and the progress bar itself may be modified using CSS properties. Progress bars are frequently used on websites to highlight particular data in a more appealing way for users. One advantage of employing a circle progress bar over a standard (horizontal) progress bar is that you can accommodate more progress bars in one row, showing ... Read More

2K+ Views
To create a search bar using HTML and CSS, we can use simple form elements and basic CSS properties. Search box is most commonly used component in a website which makes navigation easier. In this article, we will be understanding how we can create a search bar with search button using HTML and CSS. We are having a text type input box and a button in this article, our task is to create a search bar using HTML and CSS. Steps to Create a Search Bar Using HTML and CSS First we have created ... Read More

629 Views
Utilizing social media helps your internet business attract more clients. Any website can benefit greatly from social media buttons, which enable users to receive updates directly from the website. Additionally, a sticky social bar helps to boost visitors to your website and grows your social media following. In this article we will discuss how to use CSS to make a sticky social media bar without affecting the look and feel of your website. Several jQuery plugins are available for floating sidebars, however they could affect the speed and appearance of your website. We'll use CSS code to add an animated ... Read More

4K+ Views
To design a calendar using HTML and CSS, we will be using HTML tables. We use calendar in our daily life to check the dates, schedule any event and many more. In this article, we will understand how we can design a calendar using HTML and CSS only. We will be using HTML table to create the structure and use CSS properties to design the UI of calendar. Steps to Design a calendar Using HTML and CSS We will be following below mentioned steps to design a calendar Using HTML and CSS. Structuring the Calendar ... Read More