
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 2202 Articles for HTML

6K+ Views
HTML and XHTML are computer languages that are used in the development of web pages. It has simpler syntax that can be understood easily. XHTML is the extension of HTML which also combines the features of XML. It has more strict syntax than HTML. Although XHTML is derived from HTML, there are considerable differences between these two. What is HTML? The full form of HTML is Hypertext Markup language. It was developed by Tim Berners Lee in the year 1993. It is an extended form of standard generalized markup language (SGML). HTML provides the base or skeleton for the web ... Read More

1K+ Views
While creating the responsive design for the application, it is also necessary to create a responsive card designs. Sometimes, developers require to add a hover effect on the card. So, when the user hovers over the card, it should change the style of the card. Here, we will learn to add a hover effect on the card and change the CSS whenever the user hovers over the card. Syntax Users can follow the syntax below to add the hover effect to the card. .card:hover { /* add css to set to element on hover */ ... Read More

404 Views
Sometimes, the task is to find the user’s current position and then to show the location coordinates on the webpage or show the location on a map. Using HTML and javascript code this process of getting the current location of the user in an HTML page is demonstrated in this article. This is shown by using two different examples. In the first example, the current location of the user can be fetched and then the location coordinates are displayed on the HTML page. In the second example, an open-source Leaflet map library is used to fetch and then display the ... Read More

687 Views
Sometimes, the task is to click a link in one container and to display the content in another container. In HTML, iframes are used to easily show the content in specified area on the page. In this article, using two different examples, links are used to load an iframe using another iframe links. In example 1, the links in the upper Iframe are used to display two different pictures in the bottom iframe. In example 2, using the links in the upper iframe the video content is displayed both in the bottom iframe as well in the upper iframe. ... Read More

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

418 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

4K+ Views
To break a line without using br tag in HTML/CSS, is useful where you want space between elements, but don't want to add a new line of text. In this article, we will be discussing two different approaches to break line without using br tag. We are having some textual content in our HTML document in this article, our task is to break line without using br tag in HTML/CSS. Approaches to Break Line Without br Tag Here is a list of approaches to break a line without using br tag in HTML/CSS which we will be discussing in this ... Read More

1K+ 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
2K+ 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
11K+ 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