Welcome to Learn HTML 101
<!DOCTYPE html> tells the browser the page uses HTML5.
HTML stands for HyperText Markup Language. It is used to build websites and organize content.
HTML uses tags to create elements.
- Opening tag ā starts the element
- Closing tag ā ends the element
- Content ā text between tags
Example:
<p>Hello World</p>