Found 8895 Articles for Front End Technology

Liquid Layout in CSS

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

931 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

942 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

494 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

How to define two column layout using flexbox?

Aayush Mohan Sinha
Updated on 27-Jun-2024 16:54:55

3K+ Views

To create a two column layout using flexbox can be so easy if you have the knowledge of CSS display property. Flexbox is a layout model in CSS that provides an efficient and flexible way to arrange and distribute space between items within a container. It arranges elements in a single dimension, either horizontally or vertically, within a container. To know more about the CSS Flexbox Layout visit the attached link. Imagine we have parent div and inside that div we have two child div all we have to do is place those child div side by horizontally. Ways to ... Read More

How to define the URL of the video file in HTML5?

Aayush Mohan Sinha
Updated on 05-May-2023 17:31:11

125 Views

Amidst the technological era, multimedia content has emerged as a pivotal facet of contemporary web designing, enabling programmers to fashion interactive and vibrant user interfaces. Nevertheless, assigning the URL of a video document in HTML5 can prove to be a perplexing mission for fledgling web developers. It mandates a profound understanding of the fundamental syntax and parameters, alongside comprehending the distinct video formats and their corresponding compatibility with diverse web browsers. This essay shall expound upon the systematic approach towards defining the URL of a video document in HTML5, delving into the intricacies of this procedure from a technical perspective ... Read More

Advertisements