HTML advance Interview Questions What is DocType in HTML? . First thing which we should know that it is not a HTML tag. It is an instruction to browser about version of the markup language the page is written in. In HTML 5 we use doctype like <!DOCTYPE html> How to vertically align text inside […]

Read More →

Canvas Interview Questions and Answer What is Context in Canvas? Canvas in a HTML 5 element that is used to draw graphics and different types of shapes by using JavaScript. Context is the reference or object of Canvas element that provides methods and properties for drawing on the canvas. We use getContext() method to get […]

Read More →