<!DOCTYPE html>
<html lang="ja">
<head>
<meta name="disciption" content="ドットインストール">
<title>ドットインストール</title>
</head>
<body>
<input type="text" placeholder="otokatsu">
<input type="text" value="hello">
<br>
<input type="password">
<br>
<textarea></textarea>
<textarea>hello</textarea>
<br><br>
<!-- <label for="name">名前</label>
<input type="text" id="name"> -->
<label>名前<input type="text"></label>
<br><br>
<label for="color">好きな色</label>
<!-- <select id="color" size="4" multiple> -->
<select id="color">
<option>色1</option>
<option>色2</option>
<option>色3</option>
<option selected>色4</option>
<option>色5</option>
<option>色6</option>
</select>
</body>
</html>