1 / 8

Advanced HTML Interview Questions Answers

HTML has come with so many different versions from beginning to till like HTML, HTML , HTML 2.0, HTML 3.2, HTML 4.0 and the latest version HTML 5.To learn most searched top HTML interview question and answers at coding Tag

codingtag
Download Presentation

Advanced HTML Interview Questions Answers

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. HTML Interview Questions

  2. About Us About Coding Tag Coding Tag is the E-learning website covering all tutorials of technical and nontechnical tutorials including advanced programming , web Development,current affairs and Technical interviews.... In Coding tag , It’s the outstanding reference platform for Interview questions as well on :- HTMLCSSPHPSQLCC++OOPSAjaxJSPython etc... In this presentation you will learn about latest frequently asked Interview questions related to HTML and HTML5 . More info related toHTML Interview questions

  3. What is SVG? In HTML 5 , SVG is used for the 2-D vector and raster graphics. SVG images were defined in XML text files . SVG is used to make vector diagrams like: • Pie Charts • 2-Dimensional graphs ... <svg width=“100” height=“100”> <circle cx=“50” cy=“50” r=“40” stroke=“yellow” stroke-width=“4” fill=“red” /> </svg>

  4. What are the entities in HTML? The HTML character entities are used as a replacement for reserved characters in HTML. You can also replace characters that are not present on your keyboard by entities. These characters are replaced because some characters are reserved in HTML. Result Description Entity Name Entity Number

  5. Name the supported file formats for audio tag ? This tag defines the sound, such as music or other audio streams. There are 3 supported file formats : • MP3 • WAV • OGG <audio controls> <source src=“CodingTag.mp3” type=“audio/mpeg”> Learn from Coding Tag </audio>

  6. what is the use of a datalist tag? Datalist tag provides an autocomplete feature on the form element. It facilitates users to choose the predefined options for the users to select data. Users will see a drop-down list of predefined options as they input data. <label> Enter your favorite color <input type="text" id="favcolor" list="colors"> <datalist id="CktPlayers"> <option value="Sachin Tendulkar"> <option value="Jacques Kallis"> <option value="Ricky Ponting"> </datalist> </label>

  7. What is the use of figcaption tag in HTML5? The <figcaption> element is used to caption the image. It is an optional tag and can appear before or after the content within the <figure> tag. It is used with <figure> element and it can be placed as the first or last child of the element. <figure> <img src="htmlpages/images/tajmahal.jpg" alt="Taj Mahal"/> <figcaption>Fig.1.1 - A front view of the great Taj Mahal in Agra.</figcaption> </figure>

  8. Thanks! Any questions? You can find me atcodingtag.com

More Related