26 lines
581 B
HTML
26 lines
581 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Go Mod WASM Example</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>This is an example Go WASM Project.</h1>
|
|
<h3>
|
|
<a href="https://gitea.teamortix.com/Team-Ortix/go-mod-wasm/src/branch/master/example/basic/src/api/main.go">
|
|
Sample Go code
|
|
</a>
|
|
</h3>
|
|
|
|
<h2>Value from Go:</h2>
|
|
<h3 id="value"> </h3>
|
|
|
|
<h2>Call function from Go:</h2>
|
|
<input type="text" id="input" value="Team Ortix" />
|
|
<h3 id="funcValue"> </h3>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
|
|
</html> |