
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

955 Views
Breadcrumbs is a useful navigation tool that displays the user's current location within a website. They provide a clear path for users to easily navigate back to previously visited pages, and they also help search engines understand the structure of your website. Approach - 1 We will create horizontal breadcrumb navigation, which shows users the path they have taken to arrive at the current page. This type of navigation helps users understand where they are on a website and how to navigate back to previous pages. Algorithm Define an unordered list element to hold the breadcrumbs. Add list items ... Read More

282 Views
Bottom-positioned icon selects is a user interface element that allows users to select options from a dropdown menu. It is a variation of a standard select element with added functionality provided by jQuery Mobile. The icons are added to each option of the select menu to provide a visual cue to the user about the option they are selecting. The dropdown menu can be opened by clicking on the select menu button. jQuery Mobile provides an easy way to create bottom-positioned icon selects using their selectmenu widget. This widget enhances the standard select element with new features such as the ... Read More

1K+ Views
Snackbars are notification bars that appear at the bottom of a web page to display an important message, usually to confirm an action or provide feedback to the user. It is displayed on the screen for fewer seconds and made to disappear. They are an essential element of user interface design and are widely used in web applications. Approach - 1 Here we will be creating a simple and basic snackbar, which will be displayed for 3 seconds and disappears whenever the user taps the show snackbar button. Algorithm Make the title of the HTML document as ... Read More

3K+ Views
A skewed background is a design effect that creates a diagonal or angled appearance on the background of a web page or element. This effect can be achieved using CSS transforms to skew the container element, along with other CSS properties like background-color, gradients, and images to create the desired visual effect. Approach -1: using the transform property in CSS Algorithm Set the title of the document as “Skewed Background”. Define CSS variables for the skew angle and background colors Set the transform property to skew the background using the CSS transform property Set a linear gradient background using ... Read More

3K+ Views
HTML tags are used for defining the structure of the webpage. Various types of tags can use used for dealing with text in HTML. In this article, we will use the plaintext tag to display the HTML tag in the output. The examples used in this article will help you understand how to use this plaintext tag in various ways to display HTML tags as plain text. Following are the HTML entities that displays the HTML text as plain text − Syntax ...write the HTML tags Plaintext is such type of tag that allows printing the HTML tags ... Read More

1K+ Views
HTML has an SVG element that can be used for designing wave images. The wave image shows the unique style of the webpage and it becomes more user interactive while adding the property of animation and transitions to it. The wave design is generally used in the landing page, button, and webpage image. To create the wave image, the SVG element is the best way to design the wave formation. Syntax The SVG element is used to draw the graphics. The viewbox attribute defines the position and dimension of the graphics. The ... Read More

960 Views
The term spell check is used to check the spelling of a word. The input box is defined by an input element in HTML that allows the user to text something on it. The textarea is termed by feedback or comment box that allows the user to write more lines of text. When we enter grammatically incorrect words into input or textarea fields in HTML forms, the idea of the spell check feature is essentially used. The incorrect words will have by default red underline. It is used to find spelling or grammar errors in text areas or input boxes. ... Read More

757 Views
The HTML’s SVG tag is a container that is used to describe the 2D graphics. The SVG stands for Scalable Vector Graphics and represents the two-dimensional graph in the X and Y coordinate system of any vector diagrams. This type of tag is mostly helpful to draw vector diagrams like circles, rectangles, rounded- rectangles, squares, triangles, stars, etc. There are various ways of drawing a circle with the help of SVG tags like using The tag, tag as well as tag in HTML. Here we are going to learn two tags out of these three i.e. ... Read More

955 Views
In this article, the user will understand how to make a display in a horizontal row in the HTML. This can be easily done by using “display: inline” feature while setting the style or by using the table row feature. This process of displaying some elements of a webpage in a row is demonstrated. First, the method is given where the unordered list items are displayed in a row. In the second example, the paragraph lines are displayed in a row. In the third example, images of different sizes are used to display these in a row. Example 1: ... Read More

3K+ Views
Sometimes, the task is to display a vertical line on the web page and to set the style for that vertical line. Using the HTML, this process of creating a vertical line on the webpage is demonstrated in this article. First the method is given where the border style is specified for the div tag to display a vertical line. In the second example, the keyboard characters “|” and “!’ are filled as table cell contents to create a vertical line made up of dashes or dots. In the third example a small width rectangle is created that looks ... Read More