What happens if the list-style-type property is used on a non-list element like a paragraph?
Here the property will be ignored without having any effect on the paragraph.
View answer Workspace Report Error Discuss
Text/Html is called the __________ of the page
View Answer Report Error Discuss
What does an HTML tag do?
What is the difference between XML and HTML?
What are meta tags used for?
Which method is used to draw an image on the canvas?
drawImage(image,x,y) method is used to draw an image on the canvas.
HTML 5 provides drag and drop facility. How do you make an image draggable?
To make an image draggable, the draggable attribute is set to true:
<img draggable="true">
Can HTML 5 get the geographical position of a user?
- Yes, HTML 5 can get the location of a user with the use of Geolocation API.
- Use getCurrentPosition() method to get the user’s current position.