<body>
<!-- a
- href : ๋งํฌ์ ๋ชฉ์ ์ง
-target : ์ฐฝ ์ฌ๋ ํํ _self, _blank
-->
<ul>
<li><a href="https://www.naver.com/" target="_blank">๋ค์ด๋ฒ</a></li>
<li><a href="https://chrome.google.com/" taeget="_blank"><img src="" width="50px">๊ตฌ๊ธ</a></li>
</ul>
<br><br>
<ul>
<li><a href="#ch1">Where does thos spec fit?</a></li>
<li><a href="#ch2">Is this html?</a></li>
</ul>
<!-- id, ์ค๋ณต ์ฌ์ฉ ๋ถ๊ฐ๋ฅ, ํ์ด์ง ์์์ ์ ์ผํจ -->
<p id="ch1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eius delectus laboriosam ut quibusdam odit ea aliquam officia temporibus. Inventore debitis, nisi aut temporibus totam quae et molestias officiis eius enim.</p>
</body>
a ํ๊ทธ
<body>
<!--
[ ํผ ํ๊ทธ ์์ฑ ]
name: ์คํฌ๋ฆฝํธ๋ ์๋ฒ์์ from์ ์๋ณํ๊ธฐ ์ํ ์ด๋ฆ
action: from๋ฐ์ดํฐ๋ฅผ ์ ์กํ ๋ URL ์ง์
method: HTTP ์์ฒญ ๋ฉ์๋(get, post)
-get: ๋ฐ์ดํฐ๋ฅผ URL์ ์ผ๋ถ๋ก ์ ์ก
-post: ๋ฐ์ดํฐ๋ฅผ ๋ณธ๋ฌธ์ผ๋ก ์ก์
target: ์น ์๋ฒ ์์ฉํ๋ก๊ทธ๋จ์ผ๋ก๋ถํฐ ์ ์ก๋ฐ์ ๋ฐ์ดํฐ(HTML ๋ฌธ์๋ ์ด๋ฏธ์ง๋ฅผ ์ถ๋ ฅํ ์๋์ฐ ์ด๋ฆ)
-->
<form name="fo" method="get">
์์ด๋: <input type="text" size="15"><br>
๋น๋ฐ๋ฒํธ: <input type="password" size="15"><br>
<input type="submit" value="Log in"><br>
</form>
<!-- ํผ ์ ์ก๊ณผ์ -->
<form name="sform"
action="https://search.naver.com/search.naver"
method="get">
<input type="text" name="query">
<input type="submit" value="๊ฒ์">
</form>
</body>
์๊ธฐ์๊ฐ์
<h3>์๊ธฐ์๊ฐ์ ์์ฑ</h3>
<form>
์ด๋ฆ: <input type="text" value="" size="15"><br>
์ํธ: <input type="password" value="" size="15" maxlength="4"><br>
์๊ธฐ์๊ฐ์: <br>
<textarea rows="5" cols="20" placeholder="์ฌ๊ธฐ์ ์
๋ ฅํ์ธ์"></textarea>
Datalist/Selected
<!-- ๋ฐ์ดํฐ ๋ชฉ๋ก์ ๊ฐ์ง ํ
์คํธ ์
๋ ฅ: datalist (์๋์์ฑ๊ธฐ๋ฅ) -->
<h3>์ ํธ๊ณผ์ผ</h3>
<input type="text" list="fruit">
<datalist id="fruit">
<option value="apple"></option>
<option value="banana"></option>
<option value="cheery"></option>
</datalist>
๋จน๊ณ ์ถ์ ์์์
<!-- ์ฝค๋ณด๋ฐ์ค ๋ง๋ค๊ธฐ, selected ๊ธฐ๋ณธ์ ํ -->
<select name="china">
<option value="1">์ง์ฅ๋ฉด</option>
<option value="2">์งฌ๋ฝ</option>
<option value="3" selected>ํ์์ก</option>
</select>
data list์ ์ฝค๋ณด๋ฐ์ค๋ ๋ง๋๋ Select์ฐจ์ด๋
Label ํผ ์์ ์บก์
<!-- ๋ผ๋์ค๋ฒํผ -->
<label><input type="radio" name="friut2">๋ฐ๋๋</label><br>
<label><input type="radio" name="friut2" checked disabled>ํฌ๋</label><br> <!--checked disable ์์ ๋ถ๊ฐ๋ฅ-->
<label><input type="radio" name="friut2">์๋ฐ</label><br>
<label for="addr">์ฌ๋ ๊ณณ: </label>
<input type="text" id="addr">
<label>์ข์ํ๋ ์๊น์?</label><br>
<label>๋นจ๊ฐ<input type="checkbox" value="1"></label><br>
<label>ํ๋<input type="checkbox" value="2"></label><br>
<label>๋
ธ๋<input type="checkbox" value="3"></label><br>
label for="addr" , input type="" id="addr" ์ ์ฌ์ฉํ๋ ๊ฒฝ์ฐ ๊ฐ๊ฐ ์์ญ์ด ํ๋์ ์์ญ์์ ํํํด์ฃผ๋ ๊ฒ.
name์ ๋์ผํ๊ฒ ์ ์ฉํ๋ ์ด์ ๋ friut2์ ๋ค๋ฅด๊ฒ ์ฃผ๋ฉด ์ค๋ณต ์ ํ์ด ๋จ. ๋๋ฌธ์ ๊ฐ์ ๊ฐ์ ์ฃผ์ด์ ํ๋๋ง ์ ํํ ์ ์๊ฒ ํจ.
์ ์ ๋ ฅ ํ๊ทธ
<!--
์ ์
๋ ฅ
#FFFFF (rgb => #rrggbb) / 0~255(8bit) / 0~FF
-->
<label>๊ธฐํ: <input type="color" value="#00BFF"
onchange="document.body.style.color=this.value">
<input type="checkbox" value="4"></label>
์ ์
๋ ฅ์
#FFFFF (rgb => #rrggbb) / 0~255(8bit) / 0~FF ๋ฑ ๋ค์ํ ๋ฐฉ๋ฒ์ผ๋ก ๊ฐ๋ฅ.
์๊ฐ์ ๋ณด ํ๊ทธ
<h3>์๊ฐ์ ๋ณด์
๋ ฅ</h3>
<input type="momth" value="2010-12"><br>
<input type="week" value="2022-W30"><br>
<input type="date" value="2012-01-01"><br>
<input type="datetime-local" value="2012-01-01T06:10:10"><br>
<input type="time" value="21:30"><br>
์คํ๋ฒํผ ์ฌ๋ผ์ด๋๋ฐ
<!-- ์คํ๋ฒํผ๊ณผ ์ฌ๋ผ์ด๋๋ฐ -->
<h3>ํ ์ ์ด ์์คํ
</h3>
<form>
์ง์์๊ฐ(0.0~10.0์๊ฐ):
<input type="number" min="0.0" max="10.0" step="0.5"><br>
์จ๋์ค์ :10°
<input type="range" min="10" max="30" list="temp">30°
<datalist id="temp">
<option value="12" label="Low"></option>
<option value="20" label="Medium"></option>
<option value="28" label="High"></option>
</datalist>
</form>
<!-- ํผ ์์ ๊ทธ๋ฃนํ fieldset / legend(์ ๋ชฉ) -->
<h3>์ ๋ณด์
๋ ฅ</h3>
<hr>
<form>
<fieldset>
<legend>์ ๋ชฉ์ ์
๋ ฅ</legend>
<input type="email" placeholder="id@host">
<input type="url" placeholder="https://">
<input type="tel" placeholder="010-0000-0000">
<input type="search" placeholder="๊ฒ์์ด">
<input type="submit" placeholder="์ ์ก">
</fieldset>
<small>๋ฌธ์: Tel.010-0000-0000</small>
</form>
</body>
<body>
<table>
<caption>์ ์ฃผํน๋ณ์์น๋ ํ๊ตํํฉ(2015.4.1 ๊ธฐ์ค)</caption>
<thead>
<th>๊ตฌ๋ถ</th>
<th>ํ๊ต์</th>
<th>ํ๊ธ์</th>
<th>ํ์์</th>
<th>๊ต์์</th>
</thead>
<tbody>
<tr>
<td>์ ์น์</td>
<td>117</td>
<td>252</td>
<td>5,547</td>
<td>474</td>
</tr>
<tr>
<td>์ด๋ฑํ๊ต</td>
<td>117</td>
<td>252</td>
<td>5,547</td>
<td>474</td>
</tr>
<tr>
<td>์คํ๊ต</td>
<td>117</td>
<td>252</td>
<td>5,547</td>
<td>474</td>
</tr>
<tr>
<td>๊ณ ๋ฑํ๊ต</td>
<td>117</td>
<td>252</td>
<td>5,547</td>
<td>474</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>ํฉ๊ณ</td>
<td>304</td>
<td>3,347</td>
<td>86,954</td>
<td>6,111</td>
</tr>
</tfoot>
</table>
์คํ๊ฐ ๋์ ์คํ์ด ๋์ง ์์๋๋ฐ ์ฐพ๊ธฐ ํ๋ค์๋ค.
์ฒ์ฒํ ์ดํด๋ณด๋ฉด์ ํ๊ทธ๋ค์ด ์ง์ ์ ์ด๋ฃจ๊ณ ์๋์ง ์ฒ ์๊ฐ ํ๋ฆฌ์ง์์๋์ง ํ์ธํจ.
์ฐจ๊ทผ์ฐจ๊ทผ ์์๊ฐ๋ ๊ธฐ๋ถ์ด ๋ ๋ค.