수업 문제(국비 지원)/HTML, CSS
[HTML/CSS] 2022.09.20 - css
byeolsub
2023. 4. 29. 20:56
❓

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
table,tr,td,th{
border : solid 1px;
border-collapse : collapse;
padding: 8px;
}
</style>
</head>
<body>
<table>
<tr>
<td rowspan="3">일</td>
<td colspan="2">이</td>
</tr>
<td colspan="2">삼</td>
<td rowspan="3">사</td>
<tr>
<td>오</td>
<td>육</td>
</tr>
<td colspan="3">칠</td>
</table>
</body>
</html>
❓

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
h3{
text-shadow : 2px 2px 10px gray;
}
p{
color : green;
text-shadow : 2px 2px 10px gray;
}
span{
color : blue;
text-decoration : underline;
}
</style>
</head>
<body>
<h3>거제도</h3>
<p>
경상남도 거제시에 있는 섬으로 우리나라에서 <span>제주도 다음으로 큰섬</span>입니다.
<span>62개의 섬으로 구성</span>되어 있는데 이들 가운데 사람이 사는 유인도는 10개 정도입니다.
<span>면적은 380.1평방 km</span>이고, 해안선의 길이는 275.1km입니다.</p>
</body>
</html>