HTML
Hyper Text Markup Language

Learn HTML with Qarpeo! Master HTML fundamentals through hands-on tutorials, step-by-step guides, and real-world examples. Start building web pages today!

Button Element

button.html
<button>Button</button>

Link Element

link.html
<a href="https://www.institute.qarpeo.com">Visit institute.qarpeo.com</a>
Visit institute.qarpeo.com

Ordered List Element

lists.html
<ol>
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
  <li>Item 3</li>
</ol>
  1. Item 1
  2. Item 2
  3. Item 3
  4. Item 3

UnOrdered List Element

lists.html
<ul>
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
  <li>Item 3</li>
</ul>
  • Item 1
  • Item 2
  • Item 3
  • Item 3

Form Element

form.html
<h1>The form element</h1>
<form>
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <button type="submit">Submit</button>
</form>
<p>Click the "Submit" button and the form-data will be sent to a page on the

The form element





Click the "Submit" button and the form-data will be sent to a page on the server