Category: Technical Interview
-
How would you display the given table on an HTML webpage?
5 pcs 10 5 1 pcs 50 5 The HTML Code for the problem depicted above is: <table> <tr> <td>50 pcs</td> <td>100</td> <td>500</td> </tr> <tr> <td>10 pcs</td> <td>5</td> <td>50</td> </tr> </table>
-
What are HTML Entities?
HTML Entities are special characters used to represent characters that cannot be typed on a keyboard. They are often used to display special symbols and foreign characters.
-
What is the advantage of collapsing white space?
Collapsing white space in HTML can help to reduce the size of web pages and make them load faster. It involves removing unnecessary white space between HTML elements.