HTML Notes
HTML Notes
1. Basic Structure
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
2. Common Tags
- List:
- Unordered: <ul><li>Item</li></ul>
- Ordered: <ol><li>Item</li></ol>
3. Formatting Tags
<u> - Underline
<mark> - Highlight
<small> - Smaller
<del> - Deleted
<ins> - Inserted
4. Tables
<table>
<tr>
<th>Heading</th>
<th>Heading</th>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</table>
5. Forms
</form>
HTML Notes
6. Semantic Elements
7. Attributes
Common attributes: id, class, style, title, href, src, alt, type, name, value, etc.
8. HTML Entities
< - <
> - >
& - &
- space
" - "
' -