01.HTMLベース-HTMLタグ
🌈 最もポピュラーなhtmlタグ
🌈 htmlタグのプロパティ
1.htmlタグのプロパティは?
🌈 <img>ラベル
imgラベルとは?
-srcプロパティ:画像のパス
-width:画像水平サイズ
-height:画像の奥行きの大きさ
-alt:代替機能として、情報はテキスト形式で表示されます(画像が破損した場合)
-title:マウスを離すと、どの絵かテキストで表示されます
<img src="이미지 경로" width="500" height="300">
🌈 <from>タグ
1.フォームラベルとは?
<input>과 <label>
ペア使用<input id="">과 <label for="">
タグの2つの属性名が一致し、ペアで使用<input>
科<label>
マークはinline levelマーク<input>
過<label>
縦置きしたい場合はblock-levelで表記<div></div>
小包 <body>
<h1>Hello!</h1>
<p>I like to line in <strong>South Korea</strong></p>
<form>
<div>
<label for="form_color"></label>
<input id="form_color" type="color" />
</div>
<div>
<label for="form_touch"></label>
<input id="form_touch" type="text" disabled value="Don't touch" />
</div>
<div>
<label for="form_checkbox"></label>
<input id="form_checkbox" type="checkbox" />
</div>
<div>
<label for="form_radio"></label>
<input id="form_raido" type="radio" />
</div>
<div>
<label for="form_range"></label>
<input id="form_range" type="range" />
</div>
<div>
<label for="form_file"></label>
<input id="form_file" type="file" accept=".pdf" />
</div>
<div>
<h3><mark>Account</mark></h3>
</div>
<div>
<label for="account_name"></label>
<input id="account_name" required placeholder="name" type="text" />
</div>
<div>
<label for="account_id"></label>
<input id="account_id" required placeholder="id" type="text" />
</div>
<div>
<label for="account_password"></label>
<input
id="account_password"
required
placeholder="password"
minlength="10"
type="password"
/>
</div>
<div>
<label for="account_email"></label>
<input id="account_email" required placeholder="e-mail" type="email" />
</div>
<div>
<input type="submit" value="create account" />
</div>
</form>
</body>
🌈 <ol>、<ul>、<li>ラベル
1.list(リスト)構造を作成するためのタグ
<ol></ol>
<ul></ul>
<li></li>
<ol type="i" reversed>
<li>first order-list</li>
<li>second order-list</li>
<li>third order-list</li>
</ol>
<ul>
<li>first unorder-list</li>
<li>second unorder-list</li>
<li>third unorder-list</li>
</ul>
Reference
この問題について(01.HTMLベース-HTMLタグ), 我々は、より多くの情報をここで見つけました https://velog.io/@jewon119/01.-HTMLCSS-기초-HTML-태그テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol