Found 10711 Articles for Web Development

jQuery BlockUI Plugin

Shubham Vora
Updated on 05-May-2023 16:18:57

2K+ Views

Nowadays, asynchronous JavaScript is becoming more popular as we don’t require to reload the web page to update the data of the web page. We can use the AJAX request to fetch data from the database and update it on the web page without reloading it. However, it always takes some minimal time to update the data, which can be either in milliseconds or seconds. It can be irritating for users to see the app is updating data, and users can think that the app is hanging while the app is fetching the data. So, In such cases, we can ... Read More

Minification of CSS files

Shubham Vora
Updated on 05-May-2023 16:00:07

152 Views

If your app takes more than 3 seconds to load, you lose 50% of visitors. So, a slow-loading website can be frustrating for users, and they can navigate away from your site. However, there can be many causes for the slow website, but one of them is larger CSS files. In real applications, we need to write lots of CSS to style different web pages. So, we can minify the CSS files to reduce the size of CSS files. When we minify the CSS files, it removes the whitespaces, comments, etc., from the file, decreasing the size of the CSS ... Read More

Liquid Layout in CSS

Shubham Vora
Updated on 05-May-2023 15:55:24

933 Views

As the name suggests, the meaning of the liquid layout is flooding layout. It changes the dimensions of the HTML elements according to the screen dimensions. Whenever we use the hard-coded dimension values for HTML elements, it creates a fixed layout with a 90% chance of overflow. So, it is best practice to use a liquid layout so the web can be compatible with every device. In this tutorial, we will learn to create a liquid layout using CSS. Syntax Users can follow the syntax below to create a liquid layout in CSS. Selector_1 { Width: 60%; ... Read More

Modern CSS Cards

Shubham Vora
Updated on 05-May-2023 15:52:58

566 Views

Nowadays, creating cards on a website is very important to show various data on the website. For example, on the home page of TutorialsPoint’s website, you will find different courses in the card format, and when you click on the card, it redirects you to the particular page of the course. Furthermore, if you go to any e-commerce store such as Amazon or Flipkart, they show products in the card format. The main benefit of creating a card is that we can show short information about the product with an image and full information on the product page. In this ... Read More

Neon Text Display Using HTML & CSS

Shubham Vora
Updated on 05-May-2023 15:49:30

945 Views

Nowadays, creating Neon text on the web page is a trend to make it attractive. We can create a Neon text on the web page to generate an eye-catching effect and draw a user’s attention towards the important information that the web page contains. We can use neon texts with logos, heading, advertisements, etc., to highlight them. In this tutorial, we will customize the values of the text-shadow CSS property to create neon text. Syntax Users can follow the syntax below to create neon text using HTML and CSS. text-shadow: 0 0 1.5rem white; We used the ‘text-shadow’ CSS ... Read More

How to Deploy a Basic Static HTML Website to Heroku?

Aayush Mohan Sinha
Updated on 05-May-2023 17:49:14

2K+ Views

Conveying a stationary HTML website to a hosting platform can be an intimidating feat, especially for fledgling web developers. However, the emergence of cloud hosting amenities like Heroku has streamlined and made the process more approachable. Heroku, a cloud-oriented platform-as-a-service (PaaS), provides a straightforward and productive technique for deployment and management of web-based applications. This composition entails a comprehensive walkthrough of the step-by-step method of deploying a fundamental stationary HTML website to Heroku, utilizing the Heroku Command Line Interface (CLI) and Git, while concurrently discussing the various configuration options accessible to developers. By abiding by the instructions outlined in this ... Read More

How to demonstrate the use of Ajax loading data in DataTables?

Aayush Mohan Sinha
Updated on 05-May-2023 17:47:44

1K+ Views

In the realm of web development, the ability to efficiently load data using Ajax can be a game-changer for user experience. DataTables, a powerful jQuery plugin for creating dynamic and responsive data tables, offers a straightforward approach to incorporating Ajax loading into data tables. However, some developers may find the process of integrating Ajax loading into their DataTables challenging. In this article, we will explore the step-by-step approach to demonstrating the use of Ajax loading data in DataTables, delving into the underlying concepts and syntax necessary for success. By following this guide and utilizing the various parameters available within DataTables, ... Read More

How to delete text from document using HTML?

Aayush Mohan Sinha
Updated on 05-May-2023 17:39:32

497 Views

In the domain of web development, the capacity to handle text within a file is an indispensable expertise for designing interactive and captivating user interfaces. HTML, the widely recognized coding language utilized for making web pages, furnishes developers with a variety of mechanisms for removing text from a file. Although this may appear to be a simple task, apprehending the fundamental syntax and aspects implicated is fundamental for producing top-quality web applications. In this composition, we shall scrutinize the incremental process of eliminating text from a document utilizing HTML, contemplating on the diverse approaches and deliberations that developers ought to ... Read More

How to Delete a Row from Table using AngularJS?

Aayush Mohan Sinha
Updated on 05-May-2023 17:37:54

1K+ Views

The act of removing a row from a table is a fundamental responsibility in maintaining the reliability of data and enriching the user experience in web applications. Although this task might appear to be intimidating, software developers can employ the influence of AngularJS to accomplish this objective without difficulty. With the utilization of AngularJS's two-way data binding and pre-installed directives, developers can devise a proficient and uncluttered process to delete a row from a table. This write-up aims to investigate the step-by-step technique of eliminating a row from a table utilizing AngularJS, examining the fundamental syntax and directives that enable ... Read More

How to define word-break property to allow words to be continued to the next line in CSS?

Aayush Mohan Sinha
Updated on 05-May-2023 17:36:02

110 Views

In the domain of web development, utilizing cascading style sheets (CSS) effectively is imperative in the creation of visually pleasing and user-friendly websites. One often neglected but essential aspect of CSS is the "word-break" attribute, which is significant in preserving legibility and aesthetic appeal. The "word-break" property bestows upon developers the ability to regulate how words are exhibited and formatted in a particular block element. Through the application of this attribute, developers can guarantee that words are separated and carried over to the next line in a manner that is both visually appealing and comprehensible. This manuscript delineates a systematic ... Read More

Advertisements