





Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
It is best question asked in a interview of database
Typology: Cheat Sheet
1 / 9
This page cannot be seen from the preview
Don't miss anything!






Prepared By Subba Raju
Prepared By Subba Raju
How many tags can be used to separate section of texts? There are three tags used to separate the texts. i.e. usually <br> tag is used to separate line of texts. Other tags are<p> tag and <blockquote> tag.
How to make a picture a background image of a web page? To make a picture a background image on a web page, you should put the following tag code after the </head> tag. <body background = "image.gif"> Here, replace the "image.gif" with the name of your image file which you want to display on your web page.
What are empty elements? HTML elements with no content are called empty elements. For example: <br>, <hr> etc.
What is the use of span tag? Give one example. The span tag is used for following things: For adding color on text For adding background on text Highlight any color text etc. Example: <p> <span style="color:#ffffff;"> In this page we use span. </span> </p>
What is the use of iframe tag? An iframe is used to display a web page within a web page. Syntax: <iframe src="URL"></iframe> Example: <iframe src="demo_iframe.html" width="200px" height="200px"></iframe> Target to a link: <iframe src="http://www.nareshit.com" name="iframe_a"></iframe> HTML5 INTERVIEW QUESTIONS
What is canvas in HTML5? Canvas is an HTML area which is used to draw graphics.
What is SVG? HTML SVG is used to describe the two dimensional vector and vector/raster graphics.
What are the different new form element types in HTML 5? Following is a list of 10 important new elements in HTML 5: Color Date Datetime-local Email Time Url Range
NARESH I TECHNOLOGIES, HYDERABAD, 04023746666
Prepared By Subba Raju Telephone Number Search
</ul> </div> HTML 5 Menu: <nav> <ul> <li>News</li> <li>Sports</li> <li>Weather</li> </ul> </nav>
NARESH I TECHNOLOGIES, HYDERABAD, 04023746666
Prepared By Subba Raju
CSS INTERVIEW QUESTIONS
NARESH I TECHNOLOGIES, HYDERABAD, 04023746666
Prepared By Subba Raju An Embedded style sheet is a CSS style specification method used with HTML. You can embed the entire style sheet in an HTML document by using the STYLE element.
body tag of html. <script type="text/javascript"> document.write("JavaScript Hello World!"); </script>
NARESH I TECHNOLOGIES, HYDERABAD, 04023746666
Prepared By Subba Raju Single Line Comment: It is represented by // (double forward slash) Multi Line Comment: It is represented by slash with asterisk symbol as /* write comment here */
document.getElementById('mylocation').innerText="This is text using JavaScript";
NARESH I TECHNOLOGIES, HYDERABAD, 04023746666
Prepared By Subba Raju