28 lines
No EOL
959 B
HTML
Executable file
28 lines
No EOL
959 B
HTML
Executable file
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="Stylesheet" href="tools/bootstrap.css">
|
|
<link rel="Stylesheet" href="styles/styles.css">
|
|
<title>Bootstrap demo</title>
|
|
</head>
|
|
<body>
|
|
<div class="container text-center">
|
|
<div class="row"><h1 class="display-1 text-center">Snowman</h1></div>
|
|
<div class="row">
|
|
<div class="col text-center">
|
|
<canvas></canvas>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col d-flex justify-content-end"><button class="btn btn-secondary" id="btnBack">Back</button></div>
|
|
<div class="col d-flex justify-content-start"><button class="btn btn-secondary" id="btnNext">Next</button></div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="tools/bootstrap.js"></script>
|
|
<script src="tools/jquery.js"></script>
|
|
<script src="scripts/script.js"></script>
|
|
<script src="scripts/graphics.js"></script>
|
|
</body>
|
|
</html> |