label 태그
label
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>test</title>
</head>
<body>
<form>
<fieldset>
<label for="user_name">Name:</label><input type="text" id="user_name" /><br/>
<label for="email">Email:</label><input type="text" id="email" /><br/>
<label for="birth">Date of birth:</label><input type="text" id="birth" />
</fieldset>
</form>
</body>
</html>