1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Error Page</title>
<!-- COMMON CSS -->
<link href="css/default.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body{ FONT-FAMILY: 돋움,seoul, Arial; font-size:0.75em; }
*{ font-size:1em; }
.noPage{ width:640px; height:160px;overflow:hidden; border-top:1px solid #dcdcdc; border-bottom:1px solid #dcdcdc; margin:50px auto 10px auto; background:url(/images/core/bg/bg_error.gif) no-repeat 130px 50px; text-align:center; }
.noPage2{ width:640px; height:216px; overflow:hidden; border-top:1px solid #dcdcdc; border-bottom:1px solid #dcdcdc; margin:50px auto 0 auto; background:url(/images/core/bg/bg_error.gif) no-repeat 130px 50px; text-align:center; }
.noPage p.errorStr{ margin-top:50px; font-size:1.2em; }
.noPage p.errorBtn{ margin-top:20px; }
.noPage p{ margin:20px 0; color:#3e3e3e; font-size:1.0em;}
</style>
</head>
<body class="main">
<div id="section">
<div id="nav"><!-- ../inc/nav.htm --></div>
<div id="contents">
<div class="noPage">
<p class="errorStr"><strong>요청하신 작업을 수행할 수 없습니다.</strong></p>
<p>한국방송통신대학교</p>
</div>
</div>
</div>
</body>
</html>
|