index.hhtml
<!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" enctype="multipart/form-data">
<p>お名前:<input type="text" name="name" size="20" maxlength="5" value="たなか"></p>
<p>携帯:
<input type="checkbox" name="mobil" value="1" checked> iPhone
<input type="checkbox" name="mobil" value="2"> Android
<input type="checkbox" name="mobil" value="3"> その他
</p>
<p>携帯:
<input type="radio" name="sex" value="1" checked> 男性
<input type="radio" name="sex" value="2"> 女性
<input type="radio" name="sex" value="3"> その他
</p>
<p>写真:<input type="file" name="picturre" ></p>
<p><input type="submit" value="送信!"></p>
</horm>
</body>
</html>