HTML CSS Detailed Answers
HTML CSS Detailed Answers
PART-A
Basic Structure:
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Welcome</h1>
</body>
</html>
Ordered List:
<ol>
<li>Step 1</li>
<li>Step 2</li>
</ol>
Unordered List:
<ul>
<li>Item A</li>
<li>Item B</li>
</ul>
The CSS Box Model includes content, padding, border, and margin.
Example CSS:
.box {
<tr><td>Row 1</td></tr>
</table>
PART-B
1) What is CSS?
Example CSS:
p { color: blue; }