-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
70 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/--> |