blob: 92331cb132c5201a5cdeb5c72e6e43ca09b8a988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>GeoGebra IFrame Wrapper</title>
<style>
html,body{height:100%;margin:0}
.wrap{display:flex;align-items:center;justify-content:center;height:100%;}
iframe{border:0;width:900px;height:620px;max-width:100%;}
</style>
</head>
<body>
<div class="wrap">
<!-- Point src to the offline HTML next to this file (or a URL) -->
<iframe src="geogebra-offline.html" title="GeoGebra Applet"></iframe>
</div>
</body>
</html>
|