15 lines
430 B
HTML
15 lines
430 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Screen Saver</title>
|
|
<link rel="stylesheet" href="main.css">
|
|
</head>
|
|
<body>
|
|
<h1>Screen Saver</h1>
|
|
<canvas width="400px" height="250px">
|
|
Screen saver animation.
|
|
</canvas>
|
|
<script src="screen_saver.js"></script>
|
|
</body>
|
|
</html> |