2021. 10. 9. 20:04ใHTML + CSS + JS
1. <textarea>..</textarea>
<textarea> : ํ ์คํธ๋ฅผ ์ฌ๋ฌ ์ค ์ ๋ ฅํ๋ ์์ญ์ ๋ง๋ ๋ค.
<textarea> ์์ฑ
1๏ธโฃ cols : ํ ์คํธ ์์ญ์ ๊ฐ๋ก ๋๋น๋ฅผ ๋ฌธ์ ๋จ์๋ก ์ง์ ํ๋ค.
2๏ธโฃ rows : ํ ์คํธ ์์ญ์ ์ธ๋ก ๊ธธ์ด๋ฅผ ์ค ๋จ์๋ก ์ง์ ํ๋ค.
2. <select>..</select>, <option>..</option>
์ฌ์ฉ์๊ฐ ๋ด์ฉ์ ์ง์ ์ ๋ ฅํ๋ ๊ฒ์ด ์๋๋ผ ์ฌ๋ฌ ์ต์ ์ค ํ๋๋ฅผ ์ ํํ๋ ๊ฒ์ด๋ค.
<select>
<option> ..</option>
</select>
<select> ์์ฑ
1๏ธโฃ size : ํ๋ฉด์ ํ์ํ ๋๋กญ๋ค์ด ํญ๋ชฉ์ ๊ฐ์๋ฅผ ์ง์ ํ๋ค.
2๏ธโฃ multiple : ๋๋กญ๋ค์ด ๋ชฉ๋ก์์ ๋ ์ด์์ ํญ๋ชฉ์ ์ ํํ ๋ ์ฌ์ฉํ๋ค.
<option> ์์ฑ
1๏ธโฃ value : ํด๋น ํญ๋ชฉ์ ์ ํํ ๋ ์๋ฒ๋ก ๋๊ฒจ์ค ๊ฐ์ ์ง์ ํ๋ค.
2๏ธโฃ selected : ๋๋กญ๋ค์ด ๋ฉ๋ด๋ฅผ ์ฝ์ ํ ๋ ๊ธฐ๋ณธ์ ์ผ๋ก ์ ํํด์ ๋ณด์ฌ์ค ํญ๋ชฉ์ ์ง์ ํ๋ค.
* ์ฐ์ต ๋ฌธ์ 1
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>์ฐ์ต๋ฌธ์ 1</title>
<style>
ul {
list-style:none;
}
li {
line-height:50px;
}
label {
width:60px;
float:left;
}
</style>
</head>
<body>
<h1>์์ฝ ์ ๋ณด</h1>
<form>
<ul>
<li>
<label for="user_name">์ด ๋ฆ</label>
<input type="text" id="user_name">
</li>
<li>
<label for="user_tel">ํด๋ํฐ</label>
<input type="tel" id = "user_tel">
</li>
<li>
<label for="user_email">์ด๋ฉ์ผ</label>
<input type="email" id = "user_email">
</li>
<li>
<input type="submit" value="์์ฝํ๊ธฐ">
</li>
</ul>
</form>
</body>
</html>
* ์ฐ์ต๋ฌธ์ 2
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>์ฐ์ต๋ฌธ์ 2</title>
<style>
#container {
width:520px;
border:1px solid black;
padding:20px 40px;
margin:0 auto;
}
fieldset { margin-bottom:15px; }
legend { font-weight:bold; }
ul {list-style-type: none;}
li { line-height:30px;}
</style>
</head>
<body>
<div id="container">
<h1>ํ๋ฐํธ์๋ ๊ฐ๋ฐ์ ์ง์์ </h1>
<p>HTML, CSS, Javascript์ ๋ํ ๊ธฐ์ ์ ์ดํด์ ๊ฒฝํ์ด ์๋ ๋ถ์ ์ฐพ์ต๋๋ค.</p>
<hr>
<form>
<h4>๊ฐ์ธ์ ๋ณด</h4>
<ul>
<li>
<label for="user_name">์ด๋ฆ</label>
<input type="text" id="user_name" placeholder="๊ณต๋ฐฑ์์ด ์
๋ ฅํ์ธ์" autofocus>
</li>
<li>
<label for="user_tel">์ฐ๋ฝ์ฒ</label>
<input type="tel" id="user_tel">
</li>
</ul>
<h4>์ง์ ๋ถ์ผ</h4>
<ul>
<li>
<label><input type="radio" name="field" value="publishing"> ์น ํผ๋ธ๋ฆฌ์ฑ</label>
</li>
<li>
<label><input type="radio" name="field" value="develop"> ์น ์ ํ๋ฆฌ์ผ์ด์
๊ฐ๋ฐ</label>
</li>
<li>
<label><input type="radio" name="field" value="envi"> ๊ฐ๋ฐ ํ๊ฒฝ ๊ฐ์ </label>
</li>
</ul>
<h4>์ง์๋๊ธฐ</h4>
<textarea cols="60" rows="5" placeholder="๋ณธ์ฌ ์ง์ ๋๊ธฐ๋ฅผ ๊ฐ๋ตํ ์จ ์ฃผ์ธ์."></textarea>
<div>
<input type="submit" value="์ ์ํ๊ธฐ">
<input type="reset" value="๋ค์ ์ฐ๊ธฐ">
</div>
</form>
</div>
</body>
</html>
'HTML + CSS + JS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
5-2. ์บ์ค์ผ์ด๋ฉ ์คํ์ผ ์ํธ, ์คํ์ผ ์ฐ์ ์์์ ์คํ์ผ ์์ (0) | 2021.10.10 |
---|---|
5-1. CSS ์คํ์ผ๊ณผ ์คํ์ผ ์ํธ, ์คํ์ผ ์ ํ์ (0) | 2021.10.10 |
4-3. html input ํ๊ทธ ๊ฐ์ฅ ๋ง์ด ์ฌ์ฉํ๋ ์์ฑ (0) | 2021.10.09 |
4-2. html input ํ๊ทธ ์์ฑ๋ค (0) | 2021.10.09 |
4-1. html form ๊ณผ ๊ด๋ จ๋ ํ๊ทธ๋ค (0) | 2021.10.09 |