CBSE Class 10 Computer Applications
CBSE Class 10 Computer Applications
2. Features of HTML
3. Basic Terminologies
5. Attributes
6. Comments
<b>: Bold
<i>: Italic
<u>: Underline
<sub>: Subscript (e.g., H2O)
<sup>: Superscript (e.g., x2)
<strike>: Strike-through
8. Tag
9. Description List
<dl>
<dt>HTML</dt>
<dd>HyperText Markup Language</dd>
</dl>
Versions:
o HTML 1.0 (1991)
o HTML 2.0 (1995)
o HTML 4.01 (1999)
o HTML5 (2014)
HTML5 supports videos, canvas, forms, and mobile compatibility.
<html>
<head>
<title>My First Page</title>
</head>
<body>
Hello World!
</body>
</html>
For headings.
<h1> = Largest heading
<h6> = Smallest heading
Example: <h2>This is a heading</h2>
16. Tag
<ol>
<li>Apple</li>
<li>Banana</li>
</ol>
<ul>
<li>Dog</li>
<li>Cat</li>
</ul>