mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-05-25 11:50:17 +02:00
26 lines
625 B
HTML
26 lines
625 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Comprehensive Rust 🦀 Game Of Life exercise</title>
|
|
<link rel="stylesheet" href="/index.css">
|
|
<style>
|
|
canvas {
|
|
width: 1000px;
|
|
height: 800px;
|
|
display: block;
|
|
background-color: black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
Comprehensive Rust 🦀 Game Of Life exercise
|
|
</h1>
|
|
<button id="start-button">START</button>
|
|
|
|
<canvas id="game-of-life-canvas" width="1000" height="800"></canvas>
|
|
<script type="module" src="/exercises/game_of_life/index.mjs"></script>
|
|
</body>
|
|
</html>
|