HTML_CSS_Complete_Answers (1)
HTML_CSS_Complete_Answers (1)
PART - A
HTML (HyperText Markup Language) is the standard markup language for creating web pages. It
Basic Structure:
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Welcome</h1>
</body>
</html>
Example CSS:
Example:
<!DOCTYPE html>
<html>
<head><title>Table</title></head>
<body>
<tr><th>Name</th><th>Age</th><th>City</th></tr>
<tr><td>John</td><td>25</td><td>New York</td></tr>
<tr><td>Alice</td><td>30</td><td>Los Angeles</td></tr>
</table>
</body>
</html>
PART - B
Syntax:
Example:
Example:
Font properties: