Evgeny Zinoviev 5701977dda fix html
2018-09-05 22:17:49 +03:00

28 lines
488 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>hello_tutorial</title>
<style>
button {
position: relative;
z-index: 5;
top: -300px;
left: 350px;
}
</style>
</head>
<body>
<script type="text/javascript">
var listener = document.getElementById('listener');
listener.addEventListener('message', handleMessage, true);
</script>
<embed
id="hello_tutorial"
width="800"
height="600"
type="application/x-hello" />
<br/>
<button>Кнопка поверх OpenGL</button>
</body>
</html>