27 lines
458 B
HTML
27 lines
458 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div class="gameWrapper">
|
|
<iframe src="tools/sm64/index.html" allowfullscreen></iframe>
|
|
</div>
|
|
<p>test</p>
|
|
</body>
|
|
<style>
|
|
.gameWrapper {
|
|
position: relative;
|
|
padding-bottom: 56.25%;
|
|
padding-top: 25px;
|
|
height: 0;
|
|
max-width: 60%;
|
|
}
|
|
.gameWrapper iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</html> |