문제]
다음은 '확과 소개'를 나타내는 웹 페이지 이다. 아래 소스코드의 빈칸을 채워 완성한 뒤 실행하시오.
<!DOCTYPE html>
<html lang="kor">
<head>
<mata charset="utf-8">
<title>연습문제(5장)</title>
<style>
h1{
_____________:30px;
color:_____________;
______________:3px 3px 5px #666666;
______________:center;
}
p{
______________:"맑은 고딕","돋움";
font-size:18px;
font-weight:bold;
_____________:180%;
color: #444444;
_______________:underline;
}
</style>
</head>
<body>
<h1>학과 소개</h1>
<p>한국대학교 디지철 콘텐츠과에서는 웹 디자인, 웹 프로그래밍, 모바일 UI/UX 디자인, 웹/앱 콘텐츠 제작 등
다양한 분야에서 필요로하는 디지털 콘텐츠 제작 전문 인력을 양성하고 있습니다.</p>
</body>
</html>
참고풀이]
<!DOCTYPE html>
<html lang="kor">
<head>
<mata charset="utf-8">
<title>연습문제(5장)</title>
<style>
h1{
font-size:30px;
color:green;
text-shadow:3px 3px 5px #666666;
text-align :center;
}
p{
font-family:"맑은 고딕","돋움";
font-size:18px;
font-weight:bold;
line-height:180%;
color: #444444;
text-decoration:underline;
}
</style>
</head>
<body>
<h1>학과 소개</h1>
<p>한국대학교 디지철 콘텐츠과에서는 웹 디자인, 웹 프로그래밍, 모바일 UI/UX 디자인, 웹/앱 콘텐츠
제작 등 다양한 분야에서 필요로하는 디지털 콘텐츠 제작 전문 인력을 양성하고 있습니다.</p>
</body>
</html>
참고풀이 결과]
대한민국의 아름다운 영토, 독도의 겨울
댓글