index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="description" content="はじめてのHTMLです。">
<title>初めてのHTML</title>
</head>
<body>
<h1>お問い合わせフォーム</h1>
<form action="contact" method="post">
<p>お名前:<input type="text" name="name"></p>
<p><input type="submit" value="送信!"></p>
</horm>
</body>
</html>