研修28日目
1.input Tag:入力に関するTag
submitボタン:クリック時にフォームに値がある場合、これらの値を自動的に移動します.
※submitよりもInputボタンをそのまま使いましょう
id:オブジェクトの一意の名前を指定し、xの繰り返しを推奨
Label:特定のコンテンツを組み合わせます.(forで指定したid接続イベントに基づいて)
入力値はreadonly反応で、
未入力値の応答readonly
name:値を渡すキー値を表します.繰り返し可能
※radioで組み合わせた逆滑走路機能動作
radio:ラジオ
type=「hidden」=>画面に表示されません.主に値の保存に使用
2.ul,ol-リストデータグループ
3.画面にimg画像を提供します。ツールバーの
ファイルのパス
<img alt="나무" src="./tree.png" width="150px" height="150px"/>
実習<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>test02</title>
</head>
<body>
<input type = "text" size = "10" maxlength = "3"/
placeholder="3글자만 된다고" value="값이다"
readonly= "readonly" /><br/>
<input type="password" maxlength = "3"/
placeholder="3글자만 된다고" value="값이다" /><br/>
<input type="number" placeholder="e는 입력이 가능해"/><br/>
<input type="date" value="2000-01-01" /><br/>
<input type="file" /><br/>
<input type="color"/><br/>
<input type="button" value="이것이다"/><br/>
<input type="submit" value="이것은 아니다"/><br/>
<button>이것도 버튼이다</button><br/>
<input type="time"/><br/>
<input type="checkbox" id="c1" checked="checked" disabled="disabled"/>
<label for="c1">1</label>
<input type="checkbox" id="c2"/><label for="c2">2</label>
<input type="checkbox" id="c3"/><label for="c3">3</label>
<input type="radio" id="r1" name="r" / ><label for="r1">1</label>
<input type="radio" id="r2" name="r" / ><label for="r2">2</label>
<input type="radio" id="r3" name="r"/ ><label for="r3">3</label>
<input type="hidden"/>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<img alt="나무" src="./tree.png" width="150px" height="150px"/>
</body>
</html>
出力結果4.テーブル
実習
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<table border="1" cellspacing="0">
<colgroup><!-- colgroup : 컬럼들의 형태를 정의 -->
<col width="100px"/>
<col width="200px"/>
<col width="300px"/>
</colgroup>
<tr height="50px" ><!-- tr : height조정 -->
<td rowspan="2"> 1-1</td><!-- td, th: width조정 -->
<th colspan="2"> 1-2</th>
</tr>
<tr height="80px">
<td> 2-2</td>
<td> 2-3</td>
</tr>
</table>
</body>
</html>
出力結果明日は一週間が過ぎた金曜日です.最近のアイデアは、何も学んでいないが、ずっと学んでいる.だから食事の感覚ではなく、おやつでお腹を満たしている感じですよくない
Reference
この問題について(研修28日目), 我々は、より多くの情報をここで見つけました https://velog.io/@wogus216/교육-28일차テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol