Category: HTML5 Interview Questions
-
What is the difference between HTML and HTML5?
HTML5 is the latest version of HTML and includes new features and improvements over previous versions. Some key differences between HTML and HTML5 include support for multimedia elements (such as video and audio), improved semantics, and better support for mobile devices.
-
Define an image map?
An image map in HTML helps in linking with the different kinds of web pages using a single image. It can be used for defining shapes in the images that are made part of the image mapping process.
-
How do you create a hyperlink in HTML?
We use the anchor tag <a> to create a hyperlink in HTML that links one page to another page. The hyperlink can be added to images too.
-
What is white space in HTML?
An empty sequence of space characters is called the white space in HTML. This white space is considered as a single space character in the HTML. White space helps the browser to merge multiple spaces into one single space, and so taking care of indentation becomes easier. White space helps in better organizing the content…
-
How do you insert a copyright symbol in HTML?
You can insert a copyright symbol by using © or © in an HTML file.
-
How do we insert a comment in HTML?
We can insert a comment in HTML by beginning with a lesser than sign and ending with a greater than sign. For example, “<!-“ and “->.”