Found 8895 Articles for Front End Technology

Advantages and Disadvantages of CSS

Yaswanth Varma
Updated on 26-Sep-2023 14:42:23

2K+ Views

As its name suggests, CSS (Cascading Style Sheets) is a language that deals with how a website should see and feel. You can choose the fonts, colors, and page layouts, among other things. CSS and HTML are frequently compared to the design of a house and its foundation, respectively. The display of a document published in a markup language can be described using CSS (Cascading Style Sheets), a style sheet language. A style sheet is a set of guidelines that instructs a web browser on how to display an HTML or XML document. All HTML tags, including the body of ... Read More

Apply Glowing Effect to the Image using HTML and CSS

Yaswanth Varma
Updated on 26-Sep-2023 14:37:30

791 Views

You have probably seen several special effects while browsing the majority of websites, which may be viewed while your cursor is over various images. We are going to process same in this article. Such images could serve as a cards for our website. The task we are going to perform in this article was to apply glowing effect to the image using HTML and CSS. The task can be accomplished by using the box-shadow property. let's dive into the article to learn more about applying the glowing effect. Using box-shadow property The box-shadow property allows you to cast a drop ... Read More

How create table without using <table> tag?

Yaswanth Varma
Updated on 26-Sep-2023 14:06:17

874 Views

A website's data representation is an essential component. If you have or manage a lot of data but don't know how to properly portray it, the users will not be able to understand it and it won't be of any use. Tabular representation is frequently a crucial kind of data representation. Particularly when it comes to statistical information. Tables are typically constructed in web design using the and tags. Making a table is a bit difficult task, particularly when the responsiveness is the concern. Let's dive into the article to learn more about creating a table without using ... Read More

Explain different markup languages other than HTML

Yaswanth Varma
Updated on 26-Sep-2023 12:55:13

201 Views

Markup languages are computer languages that are used to structure, format, or describe relationships between various portions of text documents with the aid of symbols or tags introduced in the document. Compared to traditional programming languages with strict syntax, these languages are easier to read. There are several markup languages available but the most popular among them are discussed one by one. Let's dive into the article for understanding different markup languages other than HTML. XML Extensible Markup Language (XML) is a markup language used to store structured data. The elements are defined by using custom tags, which support a ... Read More

How to Add a Datepicker in Form using HTML?

Yaswanth Varma
Updated on 26-Sep-2023 12:37:29

601 Views

Forms are a crucial and typical component of any application. They include entry fields for things like name, gender, email, and many others. A datepicker is used on several forms to fill up the date type inputs. We are aware that choosing a certain day from a calendar is done via a datepicker. Instead of typing the date by hand, a datepicker is an interactive dropdown that makes it simple to select it from a calendar. In many situations, it is also used to save a user's birthdate. Let's dive into the article for getting better understanding on how to ... Read More

Differentiate between <th> & <thead> tags in HTML Table

Yaswanth Varma
Updated on 26-Sep-2023 12:03:59

507 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. However, 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 tables. ... Read More

How to Change Background Color According to the Mouse Location using JavaScript?

Aayush Mohan Sinha
Updated on 12-Sep-2023 15:13:01

706 Views

JavaScript is a famous programming language that is one of the core languages of the World Wide Web (WWW) alongside HTML and CSS. It allows the programmer to capture events and modify the Document Object Model (DOM). In this article we are going to see how we can make use of JavaScript to change the background color according to the location of the mouse cursor. Mousemove Event The mousemove is an event which gets fired at an element when the cursor of the mouse is moved, and it is still inside the element of concern. It gives us information about ... Read More

How to Change a Button Text on Click Using LocalStorage in Javascript?

Aayush Mohan Sinha
Updated on 12-Sep-2023 15:05:21

285 Views

JavaScript is a famous programming language that is one of the core languages of the World Wide Web (WWW) alongside HTML and CSS. It allows the programmer to capture events and modify the Document Object Model (DOM). In this article we are going to see how we can make use of JavaScript to change the text of the button whenever it is clicked with the help of localStorage. localStorage The localStorage is a read−only property of the window interface that allows the user to store data. The saved information is kept between browser sessions. The localStorage property is like sessionStorage, ... Read More

How to Catch all JavaScript Errors and Send them to the Server?

Aayush Mohan Sinha
Updated on 12-Sep-2023 15:01:47

224 Views

JavaScript is a famous programming language that is one of the core languages of the World Wide Web (WWW) alongside HTML and CSS. It allows the programmer to capture events and modify the Document Object Model (DOM). In this article we are going to learn how we can catch all JavaScript errors and send them to the server. What is onerror? onerror is an event that is fired whenever an error occurs while loading an external file or resource or some error occurs while executing a script. Syntax onerror = (event, source, lineno, colno, error) => {}; Parameters: The ... Read More

How to Catch a ReferenceError with onerror?

Aayush Mohan Sinha
Updated on 12-Sep-2023 14:40:50

58 Views

JavaScript is a famous programming language that is one of the core languages of the World Wide Web (WWW) alongside HTML and CSS. It allows the programmer to capture events and modify the Document Object Model (DOM). In this article we are going to see how we can catch ReferenceError with the help of onerror event. What is ReferenceError? A ReferenceError is a form of error that may occur when the program tries to access a variable or object that doesn't exist. This can occur when a variable's name is spelled incorrectly or when the user attempts to access an ... Read More

Advertisements