Found 2556 Articles for HTML

Create a Letter-Spacing Animation Effect using HTML and CSS

Nikhilesh Aleti
Updated on 29-Aug-2023 17:14:20

211 Views

In this article, we are going to create a letter-spacing animation effect using HTML and CSS. To do so, we have CSS letter-spacing property and CSS @keyframes rule. CSS Letter-spacing Property The letter-spacing property in CSS is used to set the horizontal spacing between the text characters. If we assign a positive value for this property, the character spaces will spread farther apart. If we assign a negative value for this property, it brings the characters closer together. Syntax Following is the syntax of CSS letter-spacing property − letter-spacing: value; CSS @keyframes Rule In CSS, the ... Read More

Create a Hoverable Side Navigation with HTML, CSS and JavaScript

Nikhilesh Aleti
Updated on 29-Aug-2023 17:12:22

161 Views

A navigation bar is part of a webpage where it contains links to appropriate sections/ pages in a website that helps users in browsing the website fast and effortlessly. The navigation bar can be implemented in many ways, but the traditional way of implementing is horizontal and vertical bars. In this article, we are going to design a vertical side navigation bar using HTML, CSS, and JavaScript. Creating a Hoverable Side Navigation Following are the steps to design hoverable side navigation buttons with HTML, CSS, and JavaScript − Step 1 − Add the following HTML code. ... Read More

Convert an image into Blur using HTML and CSS

Nikhilesh Aleti
Updated on 07-Sep-2023 15:14:08

544 Views

In general, blur is a visual effect of human eye that happens when the viewer cannot be able to see the details of the object clearly. In HTML, we can apply the blur effect to elements on webpage (such as images) using CSS properties. To do so, we use the filter property along with the blur() function. This function applies a Gaussian blur effect to the image element, which makes it softer and less defined. Syntax Following is the syntax of the filter property with blur() function − filter: blur(radius); This function accepts a single parameter (i.e. radius) that ... Read More

Alternative for blink tag

Nikhilesh Aleti
Updated on 29-Aug-2023 17:02:48

268 Views

The HTML tag is used to create a blinking effect on texts. The text inside this tag would flash on and off at a default rate. The main purpose of this tag is that it can draw attention of the user. However, this tag is no longer supported and it is deprecated in HTML 4.0 version and is no longer supported in modern browsers. Instead, we can use CSS animations or JavaScript as an alternative for the “” tag. Syntax Following is the syntax of HTML tag − The text to blink. Example In the ... Read More

Adding HTML entities using CSS content

Nikhilesh Aleti
Updated on 29-Aug-2023 16:59:46

2K+ Views

In HTML and CSS, entities are special characters that have reserved meanings or representations. They are typically used to display characters that are not readily available on a standard keyboard or, to represent special symbols or characters with specific semantic meanings. CSS provides a way to add HTML entities using the content property. The content property is primarily used with pseudo-elements, such as ::before and ::after selectors, to insert content before or after an element. CSS ::before and CSS ::after Selectors The ::before selector is used to add or insert something before the content of each selected element. Following is ... Read More

How to use media queries in a mobile-first approach in HTML?

Abhishek
Updated on 31-Aug-2023 14:46:09

83 Views

Building a responsive web design is a must have and a skill that every developer must be aware and know how to build a completely responsive nug free website. Which appears differently on different screen width devices and will not look oddly or overflow when opened on different devices. It is very important to know everything about building a mobile-first design starting from approach to build until the design is ready with no bugs and tweaks. A responsive website must have a good user experience, user interface and design for all devices with same content. To build a fully responsive ... Read More

How to create a Fieldcontain flip toggle switch using jQuery Mobile

Aman Gupta
Updated on 07-Sep-2023 15:14:54

75 Views

Overview A flip toggle switch is a “on / off” like switch which changes the state of the HTML element from one form to another. By using the jQuery mobile we can create a responsive attractive flip toggle switch. So to create a flip toggle jQuery provides an attribute value as “fieldcontain”, this value is set to the attribute named as data−role. The data−role attribute is set to the fieldcontain in a div container which provides the property to the container as flip toggle switch. To create a basic flip toggle use the data−role value as a slider in the ... Read More

How to create a dynamic HTML pages

Aman Gupta
Updated on 28-Aug-2023 11:04:14

2K+ Views

Overview Nowadays most of the pages are dynamic in nature, the dynamic page means that it changes the content with respect to the user. Dynamic pages cannot be built by simply HTML and CSS because it will provide the page static nature only, so to make the web page dynamic we have to use the scripting language such as javascript or jQuery. We can make the page dynamic in many ways such as when a user enters his credentials to the page he can retrieve the information regarding his credentials. The dynamic page also represents those web pages which can ... Read More

Why is HTML used in web pages?

Ayush Singh
Updated on 22-Aug-2023 11:15:56

98 Views

Starting from the start of the Overall on the web, HTML (Hypertext Markup Language) has been the essential structure component for online destinations. HTML, which Sir Tim Berners-Lee made in 1990, has fundamentally impacted how data is introduced and gotten to on the web. This article looks at the reasoning behind the boundless utilization of HTML in web advancement, its critical qualities and advantages, and its progress with materialism in the quickly changing computerized climate. Historical Context and Evolution Due to its historical relevance and ongoing development, HTML is utilized in web sites. HTML was developed in 1990 by Sir ... Read More

Why do we use HTML code and CSS in sites?

Ayush Singh
Updated on 22-Aug-2023 11:15:24

117 Views

In the consistently developing computerized scene, sites assume a crucial part in scattering data, interfacing organizations with clients, and giving intuitive encounters. Behind each outwardly engaging and intuitive site page lies a strong team - Hypertext Markup Language (HTML) and Flowing Templates (CSS). Together, HTML and CSS structure the foundation of web advancement, giving the establishment to building drawing in and easy to understand sites. In this article, we will investigate the motivations behind why HTML and CSS are pivotal parts of current sites, digging into their jobs, benefits, and synergistic relationship. The Role of HTML in Website Development? HTML ... Read More

Advertisements