
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
Yaswanth Varma has Published 377 Articles

Yaswanth Varma
2K+ Views
The arc() is a method of the canvas 2D API.The arc() method allows you to draw a circular arc. Syntax Following is the syntax to draw a circle with arc() in HTML5 arc(x, y, radius, startAngle, endAngle) arc(x, y, radius, startAngle, endAngle, counterclockwise) The arc() method generates a circular ... Read More

Yaswanth Varma
471 Views
The stroketext() method renders the provided text using the current font, linewidth, and strokestyle properties at the specified place. The path won't be affected by any subsequent fill() or stroke() calls because this method draws directly to the canvas without changing the original route. Syntax Following is the syntax for ... Read More

Yaswanth Varma
1K+ Views
The Canvas 2D API's lineTo() method, which connects the last point of the current sub-path to the given (x, y) coordinates, adds a straight line to the sub-path. The lineTo() method expands the canvas by adding a new point and drawing a line to it from the previous point (this ... Read More

Yaswanth Varma
5K+ Views
The min and max properties in HTML are used to specify the element's acceptable range of values. The max attribute sets the element's maximum value, whereas the min attribute sets the element's minimum value. For input restriction, the min and max attributes are used with the number ... Read More

Yaswanth Varma
2K+ Views
SVG is a markup language based on XML that is used to describe two-dimensional vector graphics. SVG is essentially what HTML is to text when it comes to visuals. A rectangle is drawn on the screen via the element. The placement and shape of the rectangles on the screen ... Read More

Yaswanth Varma
186 Views
In HTML, forms for user input are created using the tag. The form tag uses a lot of different elements. When submitting a form, the novalidate attribute of the HTML tag is used to indicate that the form-data should not be validated. This attribute is a Boolean one. ... Read More

Yaswanth Varma
311 Views
When a text selection or draggable element is dropped onto an authorised drop target, the ondrop event is triggered. It is simpler to move an object to a different area by engaging notion of drag and drop. Following are the examples… Example In the following example we are using executing ... Read More

Yaswanth Varma
308 Views
In HTML, user input is obtained via the tag. The min and max properties, which indicate a maximum and minimum value for an input field, are used to limit the input field. Use the maxlength attribute to restrict the number of characters. Syntax Following are the ... Read More

Yaswanth Varma
179 Views
The range in which a gauge's value is regarded as low is specified using the HTML | low property. The low attribute's value must be higher than the "min, " lower than the "max, " and equal to or less than the "high" attribute. Note − This can only be ... Read More

Yaswanth Varma
504 Views
The HTML tag is used to add autocomplete functionality to form elements. It offers customers a set of predefined options from which to choose data. A "list" attribute containing "input" element should be used with the "" tag. The datalist id and the value of the "list" attribute are ... Read More