3-5. html κΈ°μ΄ μ°μ΅λ¬Έμ 1, 2
2021. 10. 9. 00:44γHTML + CSS + JS
728x90
1. html νκ·Έ μμ± μ°μ΅λ¬Έμ
λκ°μ΄ λ§λ€κΈ°!
λ΅:
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>μ°μ΅λ¬Έμ 1</title>
</head>
<body>
<h1>μμ΅ κ΅μ λͺ¨μ§</h1>
<h2>λ°©μ‘μ κ΄μ¬ μλ μλ΄κΈ° μ¬λ¬λΆ νμν©λλ€.</h2>
<p>κ΅λ΄ λ°©μ‘κ΅μμ μ μ
μμ λμμΌλ‘ μμ΅ κ΅μμ λͺ¨μ§ν©λλ€. νλΆλ μ 곡μ μκ΄μμ΅λλ€.<br>
νμ λ°©μ‘μ κ΄μ¬μμλ μ¬λ¬ νμ°λ€μ μ§μλ°λλλ€.</p>
<ul>
<li><b>λͺ¨μ§ κΈ°κ°:</b> 3μ 2μΌ ~ 3μ 11μΌ</li>
<li><b>λͺ¨μ§ λΆμΌ:</b> μλμ΄μ, PD, μμ§λμ΄</li>
<li><b>μ§μ λ°©λ²:</b> μμ μμ± ν μ΄λ©μΌ μ μ <br>
<i>μ§μμ μμμ κ΅λ΄ λ°©μ‘κ΅ ννμ΄μ§ κ³΅μ§ κ²μνμ μμ΅λλ€.</i> </li>
</ul>
<h3>νν</h3>
<ol type="a">
<li>μμ΅κΈ°μ νλ μ€ μμ μ νλλΉ μ§κΈ</li>
<li>μ κΈ°μλ‘ μ§κΈνλ©΄ μ₯νκΈ μ§κΈ </li>
</ol>
<img src="/04/images/mic.jpg">
</body>
</html>
2. ν μ΄λΈ μ°μ΅ λ¬Έμ
μ΄λ κ² λ§λμμ€!
λ΅:
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>μ°μ΅λ¬Έμ 2</title>
<style>
table, td, th {
border:1px solid #ccc;
}
td, th {
padding:10px 20px;
}
td:last-child{
width:200px;
}
</style>
</head>
<body>
<h1>μμ΅ κ΅μ μ§μ μμ</h1>
<table>
<tr>
<th rowspan="3">κ°μΈμ 보</th>
<th>μ΄λ¦</th>
<td colspan="2"></td>
</tr>
<tr>
<th>νκ³Ό/νλ²</th>
<td colspan="2"></td>
</tr>
<tr>
<th>μ°λ½μ²</th>
<td colspan="2"></td>
</tr>
<tr>
<th>μ§μλΆμΌ</th>
<td colspan="4"></td>
</tr>
</table>
</body>
</html>
728x90
'HTML + CSS + JS' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
4-2. html input νκ·Έ μμ±λ€ (0) | 2021.10.09 |
---|---|
4-1. html form κ³Ό κ΄λ ¨λ νκ·Έλ€ (0) | 2021.10.09 |
3-4. html νμ΄νΌλ§ν¬ νκ·Έ<a> (0) | 2021.10.09 |
3-3. html μ€λμ€μ λΉλμ€ νκ·Έ (0) | 2021.10.09 |
3-2. html img νκ·Έ (0) | 2021.10.08 |