
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 10483 Articles for Web Development

5K+ Views
This article will teach you how do we set the visible number of lines in a textarea in HTML. The HTML element is useful for multi-line editing control and allows the user to enter a sizeable amount of free-form text. Syntax Following is the syntax to set the visible number of lines in text area − To display the number of rows, or number of visible text lines for the control, is specified using the HTML textarea rows attribute. Additionally, it specifies the textarea’s visible height. Following are the examples to set the visible number of lines ... Read More

322 Views
In this article we are running a script when the element is invalid in HTML.as we are familiar with the tag and element. HTML element To gather user input, an HTML form is utilised. Most frequently, a server processes the user input. ……. HTML tag The tag designates a field for user-enterable data. The most significant form element is the element. Depending on the type attribute, the element can be presented in a number of different ways. When a submittable element is ... Read More

761 Views
The required attribute in HTML is used to specify that the element should be filled before the form is submitted. If the field is not filled and the submit button is clicked, an error generates, which fails form submission. The error will be “Please fill out this field”.The required attribute can be used on input, select and textarea element.ExampleYou can try to run the following code to implement readonly attribute − HTML placeholder attribute Register

216 Views
Use the rel attribute to see the relationship between the current document and the linked document. It works for , , HTML elements. ExampleYou can try to run the following code to implement rel attribute. The example sets the CSS files − Heading This is demo content.

203 Views
In this article we are going to learn about how to specify if and how the authoe thinks the audio/video should be loaded when the page loads in HTML. By using the HTML Audio Preload Attribute, the author can describe how they want the audio to load when the page does. This feature allows the author to tell the browser how to implement a website's user experience. Note − The preload gets ignored when autoplay was present. Syntax Following is syntax for HTML preload attribute. For getting better understanding on how to specify if and how author thinks the audio/video ... Read More

400 Views
In this article we are going to learn about how do we set an image to be shown while the video is downloading in HTML. The HTML poster attribute allows the user to display the image when the user clicks the play button or downloads a video. Otherwise, the first frame of the video will be used as the poster image if the poster attribute was not set. Syntax Following is the syntax for HTML attribute. Let’s dive into the following example where you can understand more about HTML attribute. Example 1 In the following example ... Read More

173 Views
The task we are going to perform in this article is about how to add a regular expression that an input elements value is checked against in HTML. The regular expression that will be used to check the value of the input element is specified by the HTML pattern attribute. The following input kinds are compatible with this attribute: text, password, date, search, email, etc. Syntax Following is the syntax for HTML pattern attribute. For getting more idea on how to add a regular expression that an input elements value is checked against in HTML, let’s look ... Read More

200 Views
In this article we are going to learn about how do we set what value is the optimal value for the gauge in HTML. The optimal value is used to show the range of meters. The value must fall between the minimum and maximum of the range. It is used to specify the scale measurement with a frictional value over a well-defined range. It also goes by the name "gauge." Syntax Following is the syntax for meter. Note − It only contains a floating number to represent the ideal value of the gauge. Let’s look into the following examples ... Read More