16 lines
353 B
HTML
16 lines
353 B
HTML
<html>
|
|
<head>
|
|
<title>eaglercraft server</title>
|
|
<script type="text/javascript" src="classes_server.js"></script>
|
|
<script type="text/javascript">
|
|
window.addEventListener("load", function() {
|
|
document.getElementById("main").addEventListener("click", function() {
|
|
main();
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<button id="main">main</button>
|
|
</body>
|
|
</html> |