Como inserir espaço em branco vertical em um documento htm

Estou escrevendo um teste emhtml e gostaria de inserir um espaço vertical em branco consistente entre as perguntas (como se usassevspace{3 cm} no LaTeX).

Por exemplo

<html>
  <body>
    <p>
     This is the first question?
      <!-- this is where I want about 3 cm of space -->
    </p>
    <p> 
     This is the second question?
     <!-- this is where I want about 3 cm of space -->
    </p>
  </body>
</html>

Existe uma maneira direta de fazer isso usando apenashtml ecss?