HTML Beginner Guide
Introduction
HTML (HyperText Markup Language) is used to structure web pages.
Basic Structure
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
Important Tags
<h1>, <p>, <a>, <img>, <table>, <form>, <div>, <span>
Lists
<ul>
<li>Item 1</li>
</ul>
Forms
<form>
<input type="text">
<button>Send</button>
</form>