18 lines
333 B
HTML
18 lines
333 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Canvas Project</title>
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
|
|
<body>
|
|
<canvas></canvas>
|
|
<h1 id="caption">Sample Animation</h1>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
|
|
</html>
|