<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h1>ํ์๊ฐ์
</h1>
<form action="./" method="get">
<!-- form/ name์ ์๋ฆฌ๋ง ๋ง๋ค๊ธฐ : ๊ฐ๋ฐ์์์ญ -->
<fieldset>
<legend>ํ์์
๋ ฅ</legend>
<ul>
<li>
<label for="userId">์์ด๋</label>
<input type="text" id="userId" name="Name" value="์์ด๋" />
<!-- value ๋์ placeholder์ฐ๋ฉด ์์ด๋๊ฐ ์
๋ ฅ์ ์ง์์ง-->
</li>
<li>
<label for="userId">๋น๋ฐ๋ฒํธ</label>
<input type="password" id="userId" name="PW"/>
</li>
<li>
<label for="man">์ฑ๋ณ</label>
<input type="radio" name="sex" id="man"/><label for="man">๋จ์</labal>
<input type="radio" name="sex" id="Woman"/><label for="woman">์ฌ์</labal>
<input type="radio" name="sex" id="bisexuality"/><label for="bisexuality">์์ฑ</labal>
</li>
<li>
<label for="a1">๊ฒฐํผ์ฌ๋ถ</label>
<input type="checkbox" id="a1"><label for="a1">๋ฏธํผ</label>
<input type="checkbox" id="a2"><label for="a2">๊ธฐํผ</label>
<input type="checkbox" id="a3"><label for="a3">์์ผ๋ก์์ </label>
<input type="checkbox" id="a4"><label for="a4">๋ชป๊ฐ๊ฒ๊ฐ์ ๊ฐ์๋ฐ ๊ฐ๋ฉด ๋ก๋</label>
<input type="checkbox" id="a5"><label for="a5">์คํผ</label>
</li>
<li>
<labal for="photoupload">์ฌ์ง์
๋ก๋</la>
<input type="file" id="photoupload"/>
</li>
</ul>
<input type="button" value="์ทจ์">
<input type="button" value="์ ์ก">
<input type="button" value="์ด๊ธฐํ">
</fieldset>