mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-22 10:11:32 +03:00
17 lines
363 B
HTML
17 lines
363 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Hello World!</title>
|
|
<link rel="stylesheet" href="index.css" />
|
|
</head>
|
|
<body>
|
|
<h1>Calculate prime numbers</h1>
|
|
<p></p>
|
|
<button type="button" id="start">Start</button>
|
|
<p id="status"></p>
|
|
<p id="results"></p>
|
|
<script src="site.js"></script>
|
|
</body>
|
|
</html>
|