Introduction to HTML

HTML (HyperText Markup Language) is the standard language used to structure content on the web. It provides the skeleton of every website.

Common HTML Elements

<h1>Main Heading</h1>
<h2>Sub Heading</h2>
<p>This is a paragraph.</p>
<a href="https://example.com">Visit Site</a>

HTML Forms Example

<form>
  <label>Name</label>
  <input type="text" placeholder="Enter name">

  <label>Email</label>
  <input type="email" placeholder="Enter email">

  <button type="submit">Submit</button>
</form>