Found 2416 Articles for HTML

How to link back out of a folder using the a-href tag?

Saba Hilal
Updated on 18-Apr-2023 15:09:20

1K+ Views

Sometimes, the task is to fetch a page from a subfolder and then to come back to the page in the parent folder. Using HTML code this process of providing a link to back out of a folder using a tags and href tags is demonstrated in this article. This is shown by using two different examples. In the first example, a text link with a relative path is used for coming back to the page of parent folder. In the second example, tag with the SVG link is used to back out of a folder. In this second ... Read More

How to build custom form controls using HTML?

Asif Rahaman
Updated on 17-Apr-2023 14:35:11

238 Views

Forms components are one of the essential parts of web applications. The forms are used in the contact us pages, application page, etc. HTML offers us many different ways and options to customize the setups. This includes textarea, input, checkboxes, etc. This article will explain how to build a custom form control using HTML. Custom From Control Using HTML and CSS We can use only HTML and CSS to create a custom form control. However, more is needed to interact with the backend application with JavaScript. But still, we can create all the front-end effects using only HTML and ... Read More

How to break a line without using br tag in HTML / CSS?

Asif Rahaman
Updated on 24-Nov-2023 01:19:59

2K+ Views

Introduction Breaking a line without using the tag in HTML / CSS can be useful in situations where you want to create space between elements, but don't want to add a new line of text. There are a few different ways to achieve this effect using CSS, which we'll explore in this article. Before HTML5 and CSS programmers often used the tag. However, now we have much better techniques and in fact, the usage of is obsolete nowadays. In this article, we shall learn how to break lines without using the tag in HTML and CSS ... Read More

How to automatically transfer visitors to a new web page?

Asif Rahaman
Updated on 17-Apr-2023 14:26:01

686 Views

As a website owner or developer, there may be times when you need to automatically transfer visitors to a new web page. Whether it's because you've moved a page to a new URL or want to redirect visitors to a different section of your site, there are a few different methods you can use to achieve this. In this article, we'll explore the different types of redirects you can use to automatically transfer visitors to a new web page, and provide examples of how to implement each one. Meta Refresh Redirects One of the easiest ways to redirect visitors to ... Read More

How to create mail and phone link in HTML?

Aayush Mohan Sinha
Updated on 13-Apr-2023 16:05:05

1K+ Views

Formulating mailto and telephone connections in HTML may be a straightforward and efficacious technique to enable virtual guests to promptly communicate with your enterprise. These links furnish a convenient modus operandi for users to transmit an electronic message or establish a phone conversation directly from your webpage, sans the arduous chore of typing out your contact details. This manuscript will comprehensively discuss the necessary procedures to actualize both mailto and phone links in HTML, equipping you with the essential mechanisms to affix these expedient links to your personal website. Mailto Link A mailto link in HTML allows you to create ... Read More

How to create links to sections within the same page in HTML?

Aayush Mohan Sinha
Updated on 13-Apr-2023 16:01:46

8K+ Views

Crafting internal links within a web page in HTML has a positive impact on user experience, as it enhances the navigation for the website guests. By exploiting the id attribute and the a tag, one can effortlessly establish connections to certain portions of a web page, facilitating speedy access to required information without the tedious task of scrolling through the entire page. In this write-up, we will take you through the necessary procedures to devise such links that exist within a single webpage, using HTML. Syntax … Id Attribute The identifier attribute in HTML is leveraged to recognize an ... Read More

How to Create Image Lightbox Gallery using HTML CSS and JavaScript?

Aayush Mohan Sinha
Updated on 13-Apr-2023 15:39:48

3K+ Views

In the contemporary epoch of computational technology, the impact of visual media cannot be overemphasized in captivating and retaining the attention of your viewers. A lightbox gallery that showcases images on a web page is an influential mechanism that advances user interaction by furnishing a user-friendly and uncomplicated interface. Why not experiment with this tool and discern for yourself how it can elevate the performance of your website? With the assistance of HTML, CSS, and JavaScript, one can fabricate a bespoke image lightbox gallery that can be effortlessly integrated into a website. In this exposition, we will adopt an incremental ... Read More

How to Create Image Hovered Detail using HTML & CSS?

Aayush Mohan Sinha
Updated on 13-Apr-2023 15:37:55

683 Views

Creating image hover effects with text detail can add an extra level of interactivity to your website. By utilizing a scant amount of HTML and CSS, you have the ability to bring still images into existence with elucidatory verbiage that materializes as soon as the user hovers over them. This instructional session shall direct you along the path of formulating an uncomplicated icon hover impact, encompassing the requisite HTML code and CSS decoration in order to actualize the end result. Irrespective of whether you are a neophyte or a seasoned web creator, the present discourse shall furnish you with the ... Read More

How to create Image Folding Effect using HTML and CSS?

Aayush Mohan Sinha
Updated on 13-Apr-2023 15:35:43

599 Views

In today's digital age, creating visually appealing and interactive user interfaces has become a crucial aspect of web design. One of the popular effects used in modern websites is the Image Folding Effect. This effect provides a unique and engaging way to showcase images on your website. The art of Image Folding Effect can be created through the application of HTML and CSS, which are the fundamental components of contemporary digital structures. In this piece, we shall direct you through the progression of concocting an Image Folding Outcome, bit by bit, employing HTML and CSS. By the end of this ... Read More

How to set height of an iframe element using HTML?

Shabaz Alam
Updated on 12-Apr-2023 16:04:46

1K+ Views

The iFrame element is a powerful tool in HTML. It allows web developers to embed external content into a web page. It is a container that displays other HTML documents within a page. The default height of an iFrame element does not always fit with the webpage's layout. That's why we need to ensure that it's sized correctly so that it fits seamlessly into the page layout. Here, we will discuss how to set the height of an iFrame element using HTML. Understanding the IFrame Element iFrame stands for inline frame. It allows developers to embed content, such ... Read More

Advertisements