Skip to content

Commit

Permalink
Update enter.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucoshi authored Jan 13, 2025
1 parent 3678bfc commit e081267
Showing 1 changed file with 70 additions and 18 deletions.
88 changes: 70 additions & 18 deletions website/Donkey_Kong/64/us/high/enter.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,73 @@

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN"
"http://www.w3.org/TR/REC-html40/frameset.dtd">
<html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Donkey Kong 64 on Nintendo 64</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Donkey Kong 64 on Nintendo 64</title>
<style>
body {
display: flex;
flex-direction: column;
margin: 0;
height: 100vh;
overflow: hidden;
}
.container {
display: flex;
flex: 1;
overflow: hidden;
}
.left-frame {
flex: 0 0 15%;
overflow: auto;
}
.main {
display: flex;
flex-direction: column;
flex: 1;
}
.top-frame {
flex: 0 0 10%;
overflow: auto;
}
.content-frame {
flex: 1;
overflow: auto;
}
.bottom-frame {
flex: 0 0 10%;
overflow: auto;
}
.right-frame {
flex: 0 0 15%;
overflow: auto;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<frameset cols="66,400,234" frameborder="no" border="0" framespacing="0">
<frame src="frame_left.html" name="frame_left" marginwidth="0" marginheight="0" noresize scrolling="no">
<frameset rows="49,300,51" frameborder="no" border="0" framespacing="0">
<frame src="frame_top.html" name="frame_top" marginwidth="0" marginheight="0" noresize scrolling="no">
<frame src="home_content.html" name="frame_content" marginwidth="0" marginheight="0" noresize scrolling="no">
<frame src="frame_bottom.html" name="frame_bottom" marginwidth="0" marginheight="0" noresize scrolling="no">
</frameset>
<frame src="frame_nav.html" name="frame_nav" marginwidth="0" marginheight="0" noresize scrolling="no">
</frameset>
<noframes><body bgcolor="#FFFFFF">

</body></noframes>
<body>
<div class="container">
<div class="left-frame">
<iframe src="frame_left.html" title="Left Frame"></iframe>
</div>
<div class="main">
<div class="top-frame">
<iframe src="frame_top.html" title="Top Frame"></iframe>
</div>
<div class="content-frame">
<iframe src="home_content.html" title="Content Frame"></iframe>
</div>
<div class="bottom-frame">
<iframe src="frame_bottom.html" title="Bottom Frame"></iframe>
</div>
</div>
<div class="right-frame">
<iframe src="frame_nav.html" title="Right Frame"></iframe>
</div>
</div>
</body>
</html>
<!-- 1999 POP! Multimedia... http://www.popmultimedia.com/-->

0 comments on commit e081267

Please sign in to comment.