HTML_Important_Questions
HTML_Important_Questions
1. What is HTML? Describe a structure of an HTML document as well as text formatting tags.
HTML (HyperText Markup Language) is the standard language for creating web pages. It provides
the structure of web pages using elements and tags.
4. Explain various attributes to create a table along with examples & output.
The <table> tag is used to create tables. Key attributes: border, cellpadding, cellspacing, rowspan,
colspan.
Example:
<table border='1'><tr><th>Name</th><th>Age</th></tr><tr><td>John</td><td>25</td></tr></table>