Voici un template de page HTML basique pour des tests simples.

<!DOCTYPE html>
<html>
  <head>
    <title>Titre de ma page</title>
  </head>
  <body>
    <p>Mon premier paragraphe</p>
    <h1>Un grand titre</h1>
    <h2>Un moyen titre</h2>
    <h3>Un petit titre</h3>
    <a href="fichier.exe">Télécharge moi</a>
    <a href="www.google.com">Va sur google</a>
    <img src="image.jpg" alt="Une image" />
  </body>
</html>