
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

297 Views
The progress bar on any website is used to represent the percentage of any work that is completed like the download progress of any song or movie from any website. You can use the progress bar to show the amount of song or movie that is downloaded and remaining. In HTML, we can use the element to show a progress bar on the website to represent the amount of completed and the remaining work. You can handle the value of the progress bar on your own by defining the attributes with the element itself. Let us now understand ... Read More

748 Views
Hypertext markup language i.e. HTML is a markup language that is used to create webpages content on the internet. HTML document files may contain some unwanted or malicious elements which can cause several issues while rendering the webpage. Before processing the HTML content we need to perform HTML cleaning for removal and cleaning of the malicious elements in the file. HTML entities are special characters that need to be converted into corresponding HTML representations to ensure proper rendering in browsers. In this article, we will understand cleaning and entity conversion methods using Python. HTML Cleaning HTML cleaning is done ... Read More

14K+ Views
HTML is a markup language that is used for creating web page structure and content in any web-related projects. Python provides various libraries and methods for writing to an HTML file. Python can be used to write to an HTML file using the open() function and write() method. In this article, we will explore how to write to an HTML file in Python, including the necessary syntax and examples. Writing to an HTML file To write to an HTML file we need to first open the HTML file and then add content to it in HTML syntax using tags. Once ... Read More

3K+ Views
Overview A canvas is a HTML element that provides us to display any type of custom text or graphics on the web page. A canvas makes a graphics editable through which we can make our own custom text or design. A canvas element can be added to the HTML using tag or using JavaScript we can add it through the 'document' object 'createElement' method. As we have to find the height of the text that is written in the HTML canvas, we can use the ''textMetrics" objects measureText() property to calculate height of the text. Syntax The Syntax used ... Read More

421 Views
Overview To get the selected options from a dropbox we will be using the JavaScript library that is Jquery. The Jquery provides the feature to select and find the options in the optimum lines of code. For this we will be using pseudo selector class ":selected" for the single selection and multiple selection. So for this in the single selection we will directly alert the user and in multiple we will be storing the Output in the array then displaying it on the screen. Syntax The Syntax used in this feature is − $("option:selected").text(); option:selected − The ... Read More

1K+ Views
Both the and tags are typically used when selecting an item from a list. However, the key distinction between the two is that the tag allows the user to add their own input as an option with the use of the element, but the tag does not offer this functionality. Let's dive into the article to get a better understanding of the difference between the and tags in HTML. HTML tag This tag specifies the predefined options for a element. Additionally, the HTML element receives the autocomplete feature from this ... Read More

2K+ Views
HTML employs predefined tags to instruct the browser on how to display the content. Tags are nothing more than a few instructions that are encased in angle brackets (i.e., ). Although tags are utilized across a website, many visitors are frequently unclear as to whether a given tag is a container or empty tag. They are confused since they are unsure of which tags require an ending tag in addition to the opening tag. In HTML, there are two different categories of tags − Empty Container Now, let's dive into the article for getting better understanding on container ... Read More

533 Views
With the use of sliders, users can browse and choose a value (or range) from a bar's range. They are perfect for changing settings like brightness and volume or for using image filters. Sliders can employ icons to depict a numerical or relative scale at either end of the bar. Icons can be used to convey a value's range or its characteristics, such as its nature as a volume change. Let's dive into the article for getting better understanding on adding a range slider using HTML. This can be done by using the HTML tag. HTML Tag Users ... Read More

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

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