Category: HTML

HTML Interview Questions and Answers -06

Can I have two or more actions in the same form? No. A form must have exactly one action. However, the server-side (e.g., CGI) program that processes your form submissions can perform any number...

HTML Interview Questions and Answers -05

How do I align a table to the right (or left)? You can use <TABLE ALIGN=”right”> to float a table to the right. (Use ALIGN=”left” to float it to the left.) Any content that...

CSS Interview Questions and Answers -04

How do I place text over an image? To place text or image over an image you use the position property. The below exemple is supported by IE 4.0. All you have to do...

HTML Interview Questions and Answers -04

What is HTML? Answer1: HTML, or HyperText Markup Language, is a Universal language which allows an individual using special code to create web pages to be viewed on the Internet. Answer2: HTML ( H...

HTML Interview Questions -03

How to create nest tables within tables in HTML? We can create nest table i.e. table inside a table. To create table we use following attributes: <table>……</table>: declare starting and ending of table. <tr>…</tr>:...

HTML Interview questions -02

 11.Which of these tags are all <table> tags?   12.In HTML, inline elements are normally displayed without starting a new line.    13.How can you make a numbered list?   14.How can you make...

HTML Interview Questions -01

1. What does HTML stand for? Hyper Text Markup Language  2.Who is making the Web standards? The World Wide Web Consortium 3.Choose the correct HTML tag for the largest heading <h1> 4.What is the...

Responsive Web Design Guide for Beginners

Whether you’re a beginner or a seasoned web professional, creating responsive designs can be confusing at first, mostly because of the radical change in thinking that’s required. As time goes on, responsive web design...

How to make Empty Table Markup with HTML code?

<table> <thead> <tr> <th></th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <tr> <td></td> <td></td> <td></td> <td></td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> </tr> </tbody> </table>

How to include Cufon 101 font using HTML?

1. Include the JavaScript for Cufón and the Cufón font <script type=”text/javascript” src=”js/cufon-yui.js”></script> <script type=”text/javascript” src=”js/TitilliumMaps.font.js”></script> 2. HTML Normal tags <h1>Business Solutions</h1> <h2>Business Insurance</h2> 3. Tell Cufón to replace the fonts for the specified CSS selectors <script...

Top 10 Tips to a make a popular Website page

There aren’t any magic pills to create a great web page that everyone will visit again and again, but there are things you can do to help. Some key things to focus on are...

How to Set iPhone Bookmark Icon

Place this in your <head> section, and set the href attribute to an image to a 57px x 57px PNG file. <link rel=”apple-touch-icon” href=”iphone-icon.png”/> To prevent the iPhone from adding it’s own gloss: <link...