<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="euc-kr">
<title>EMS2</title>

<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}

/* TOP 영역 */
#topFrame {
width: 100%;
height: 150px; /* ← 필요하면 조절 */
border: none;
display: block;
}

/* MAIN 영역 */
#mainFrame {
width: 100%;
height: calc(100% - 150px);
border: none;
display: block;
}
</style>
</head>

<body>

<!-- TOP -->
<iframe
id="topFrame"
src="/ems_top.htm"
scrolling="no">
</iframe>

<!-- MAIN (우체국) -->
<iframe
id="mainFrame"
src="https://service.epost.go.kr/iservice/ems/ems_eng.jsp">
</iframe>

</body>
</html>