My Blog

    • Sample Page
Illustration of a bird flying.
  • What is the use of figcaption tag in HTML 5?

    The <figcaption> element is used to provide a caption to an image. It is an optional tag and can appear before or after the content within the <figure> tag. The <figcaption> element is used with <figure> element and it can be placed as the first or last child of the <figure> element.

    October 28, 2022
  • What is the use of figure tag in HTML 5?

    The figure tag is used to add a photo in the document on the web page. It is used to handle the group of diagrams, photos, code listing with some embedded content.

    October 28, 2022
  • What is the difference between progress and meter tag?

    The progress tag is used to represent the progress of the task only while the meter tag is used to measure data within a given range.

    October 28, 2022
  • Is audio tag supported in HTML 5?

    Yes. It is used to add sound or music files on the web page. There are three supported file formats for HTML 5 audio tag. Let’s see the code to play mp3 file using HTML audio tag. Instead of koyal.mp3, you can pass any mp3 file name.

    October 28, 2022
  • Which type of video formats are supported by HTML5?

    HTML 5 supports three types of video format:

    October 28, 2022
  • What are the different new form element types in HTML 5?

    Following is a list of 10 frequently used new elements in HTML 5:

    October 28, 2022
  •  What is SVG?

    HTML SVG is used to describe the two-dimensional vector and vector/raster graphics. SVG images and their behaviors are defined in XML text files. So as XML files, you can create and edit an SVG image with the text editor. It is mostly used for vector type diagrams like pie charts, 2-Dimensional graphs in an X,…

    October 28, 2022
  • What is the canvas element in HTML5?

    The <canvas> element is a container that is used to draw graphics on the web page using scripting language like JavaScript. It allows for dynamic and scriptable rendering of 2D shapes and bitmap images. There are several methods in canvas to draw paths, boxes, circles, text and add images. For Example:

    October 28, 2022
  • Does a <!DOCTYPE html> tag is a HTML tag?

    No, the <!DOCTYPE html> declaration is not an HTML tag. There are many type of HTML e.g. HTML 4.01 Strict, HTML 4.01 Transitional, HTML 4.01 Frameset, XHTML 1.0 Strict, XHTML 1.0 Transitional, XHTML 1.0 Frameset, XHTML 1.1 etc. So, <!DOCTYPE html> is used to instruct the web browser about the HTML page.

    October 28, 2022
  • Why is a URL encoded in HTML?

    An URL is encoded to convert non-ASCII characters into a format that can be used over the Internet because a URL is sent over the Internet by using the ASCII character-set only. If a URL contains characters outside the ASCII set, the URL has to be converted. The non-ASCII characters are replaced with a “%”…

    October 28, 2022
←Previous Page
1 … 36 37 38 39 40 … 113
Next Page→

My Blog

Proudly powered by WordPress