๐ป
HTML ์ ์ดํด - ๊ทธ ์ธ ํ๊ทธ๋ค(select/form/table) ๋ณธ๋ฌธ
๊ทธ ์ธ ํ๊ทธ๋ค
select ํ๊ทธ
https://www.w3schools.com/tags/tag_select.asp
textarea ํ๊ทธ
https://www.w3schools.com/tags/tag_textarea.asp
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h3>๊ทธ์ธ ํ๊ทธ๋ค</h3>
<span>SELECT</span>
<select name="fruit">
<option value="apple">์ฌ๊ณผ</option>
<option value="banana">๋ฐ๋๋</option>
<option value="pineapple" selected="selected">ํ์ธ์ ํ</option>
</select>
<select name="fruit2" multiple="multiple" size="3">
<option value="apple">์ฌ๊ณผ</option>
<option value="banana">๋ฐ๋๋</option>
<option value="pineapple" selected="selected">ํ์ธ์ ํ</option>
<option value="melon">๋ฉ๋ก </option>
</select>
<br/><br/>
<span>TEXT AREA</span><br/>
<textarea rows="10" cols="50" name="msg"></textarea>
</body>
</html>
form ํ๊ทธ
https://www.w3schools.com/tags/tag_form.asp
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="https://www.naver.com/" method="get">
<span>์์ด๋</span>
<input type="text" name="id"/>
<br/><br/>
<span>๋น๋ฐ๋ฒํธ</span>
<input type="password" name="pwd"/>
<br/><br/>
<span>์ด๋ฆ</span>
<input type="text" name="irum"/>
<br/><br/>
<!-- submit & reset ๋ฒํผ์ ์ด๋ฒคํธ๋ฅผ ํฌํจํ๋ค -->
<input type="submit" value="์ ์ก"/>
<input type="reset" value="์ทจ์"/>
</form>
</body>
</html>
GET ๋ฐฉ์
์ฃผ์? (ํ๋ผ๋ฏธํฐ1์ด๋ฆ=ํ๋ผ๋ฏธํฐ1๊ฐ&ํ๋ผ๋ฏธํฐ2์ด๋ฆ=ํ๋ผ๋ฏธํฐ2๊ฐ&...)
- ํค์ ๋ฐธ๋ฅ๋ก ์ด๋ฃจ์ด์ ธ์๋ค. (๋๋ ์๋ณ์์ ๊ฐ, ํ๋ผ๋ฏธํฐ๋ค์๊ณผ ํ๋ผ๋ฏธํฐ๋ฐธ๋ฅ)
- ์น ๋ธ๋ผ์ฐ์ ์ ์ฃผ์์ผ๋ก ๋ฐ์ดํฐ๋ฅผ ์ ๋ฌ
- ์ง๊ด์ ์ผ๋ก ๋ณผ ์ ์๊ธฐ ๋๋ฌธ์ ๋ณด์์ด ํ์ํ์ง ์์ ๊ณณ์์ ์ฌ์ฉํด์ผํ๋ค.
- 255์ ์ด๋ด ๋ฐ์ดํฐ๋ง ๊ฐ๋ฅ
POST ๋ฐฉ์
- ์น ๋ธ๋ผ์ฐ์ ํค๋ ๋ถ๋ถ์ ๋ฐ์ดํฐ๋ฅผ ์ ๋ฌ
- ๋ณด์์ด ํ์ํ ๋ฐ์ดํฐ
a ํ๊ทธ
https://www.w3schools.com/tags/tag_a.asp
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- GET๋ฐฉ์์ ์น ๋ธ๋ผ์ฐ์ ์ฃผ์์ฐฝ์ผ๋ก ๋ฐ์ดํฐ ์ ๋ฌ/ 255์ ์ด๋ด ๋ฐ์ดํฐ๋ง ๊ฐ๋ฅ -->
<!-- POST๋ฐฉ์์ ์น ๋ธ๋ผ์ฐ์ ํค๋ ๋ถ๋ถ์ ๋ฐ์ดํฐ ์ ๋ฌ/ ๋ณด์์ด ํ์ํ ๋ฐ์ดํฐ -->
<form action="https://www.naver.com/" method="get">
<span>์์ด๋</span>
<input type="text" name="id"/>
<br/><br/>
<span>๋น๋ฐ๋ฒํธ</span>
<input type="password" name="pwd"/>
<br/><br/>
<span>์ด๋ฆ</span>
<input type="text" name="irum"/>
<br/><br/>
<span>์ฑ๋ณ</span>
<input type="radio" name="gender" value="๋จ์" />
<span>๋จ์</span>
<input type="radio" name="gender" value="์ฌ์"/>
<span>์ฌ์</span>
<br/><br/>
<span>๊ณผ์ผ</span>
<input type="checkbox" name="fruit" value="์ฌ๊ณผ"/>
<span>์ฌ๊ณผ</span>
<input type="checkbox" name="fruit" value="๋ธ๊ธฐ"/>
<span>๋ธ๊ธฐ</span>
<input type="checkbox" name="fruit" value="๋ฐฐ"/>
<span>๋ฐฐ</span>
<input type="checkbox" name="fruit" value="๋ฉ๋ก "/>
<span>๋ฉ๋ก </span>
<br/><br/>
<!-- submit & reset ๋ฒํผ์ ์ด๋ฒคํธ๋ฅผ ํฌํจํ๋ค -->
<input type="submit" value="์ ์ก"/>
<input type="reset" value="์ทจ์"/>
</form>
<br/><br/>
<h3>ํ์ด์ง ์ด๋</h3>
<ol>
<li>
<a href="https://www.naver.com/">๋ค์ด๋ฒ ์ด๋</a>
</li>
<li>
<a href="https://www.google.com/?su=9">๊ตฌ๊ธ ์ด๋</a>
</li>
</ol>
</body>
</html>
table ํ๊ทธ
https://www.w3schools.com/tags/tag_table.asp
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<table>
<tr>
<th>1ํ 1์ด</th>
<th>1ํ 2์ด</th>
</tr>
<tr>
<td>2ํ 1์ด</td>
<td>2ํ 2์ด</td>
</tr>
<tr>
<td>3ํ 1์ด</td>
<td>3ํ 2์ด</td>
</tr>
</table>
<table border="1">
<tr>
<td>1ํ 1์ด</td>
<td>1ํ 2์ด</td>
<td>1ํ 3์ด</td>
</tr>
<tr>
<td>2ํ 1์ด</td>
<td colspan="2">2ํ 2์ด 2ํ 3์ด ๋ณํฉ</td>
</tr>
<tr>
<td>3ํ 1์ด</td>
<td rowspan="2">3ํ 2์ด 4ํ 2์ด ๋ณํฉ</td>
<td>3ํ 3์ด</td>
</tr>
<tr>
<td>4ํ 1์ด</td>
<td>4ํ 3์ด</td>
</tr>
</table>
</body>
</html>
'KITRI > HTML' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
HTML ์ ์ดํด - input ํ๊ทธ (0) | 2020.05.27 |
---|---|
HTML ์ ์ดํด - ๋ฉํฐ๋ฏธ๋์ด ํ์ฉ(img/audio/video) (0) | 2020.05.27 |
HTML ์ ์ดํด - HTML ์ ๊ตฌ์กฐ์ ๊ธฐ๋ณธํ๊ทธ(h/font/ul/ol) (0) | 2020.05.27 |
HTML ์ ์ดํด - Tomcat ๋ค์ด๋ก๋ ๋ฐ ์ค์น/ ๊ธฐ๋ณธ ์ธํ (0) | 2020.05.27 |