
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 8591 Articles for Front End Technology

2K+ Views
To add a spellchecker, use the spellcheck attribute in HTML. The attribute checks spelling and grammer for text in input elements, elements and editable elements. Adding spellcheck Write spellcheck="true" inside the text type tag. Note − It works for input elements, but not password.ExampleYou can try to run the following code to add spell checker in HTML − Subject: Add an incorrect spelling for a word above and see what happens. This is an editable conttent, with a spelling mistake. Click to edit.

512 Views
The task we are going to perform in this article is set the number of columns to span in HTML. When utilizing the element, this is accomplished by using the colspan attribute. As a result, a single table cell can now span multiple columns or cells in width. Let’s jump into the article to know more about colspan attribute. Colspan Attribute The number of columns that a cell should span in HTML is specified by the colspan attribute. It enables a single table cell to stretch across many columns or cells. It offers the same features as a ... Read More

6K+ Views
In this article, we are going to discuss how to set the size of the icons in HTML. An icon is a symbol that represents a specific action on a webpage. The Icon Fonts contain symbols and glyphs. There are several icon libraries(fonts) that provide icons and can be used on HTML webpages. The prominent icon fonts frequently used by the web developers are Font Awesome, Bootstrap Glyphicons, and Google’s material icons. Font Awesome − This library is completely free, for both commercial and personal use. This Font provides us with 519 free scalable vector icons. These can be ... Read More

287 Views
Use the width attribute in HTML to set the width of an element. You can use the attribute with the following elements − , , , , , etc.ExampleYou can try to run the following code to implement width attribute in HTML − Live Demo Your browser does not support the video element. Output

377 Views
In this article we are going to perform how do we add the width in characters for input in HTML. The size attribute is used to specify the visible width of an element in terms of characters. The input fields accepts text, search, tel, URL, email, and password. Its display size may be impacted by this, albeit rather indirectly. The length of prospective entries is not truly constrained by the size parameter, though − Syntax Following is the syntax for ... Let’s look into the following examples, to learn more about adding the width ... Read More

297 Views
Use the onblur attribute execute a script when the element loses focus in HTML. You can try to run the following code to implement onblur attribute −Example Type text below! Country: function display() { var str = document.getElementById("myid"); str.value = str.value.toUpperCase(); }

149 Views
Use the selected attribute to specify that the option should be pre-selected when page loads in HTML. You can try to run the following code to implement selected attribute −Example HTML selected attribute Here's the list of subjects. Select any one: Computer Architecture Java Discrete Mathematics