20 lines
618 B
HTML
20 lines
618 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>CodeWanderer</title>
|
|
<link rel="stylesheet" href="./styles.scss" />
|
|
</head>
|
|
<body>
|
|
<div class="ui">
|
|
<div id="companion">
|
|
<svg xmlns="http://www.w3.org/2000/svg" id="companion-shape" viewBox="0 0 80 80">
|
|
<polygon fill="#A60303" points="40,0 68,12 80,40 68,68 40,80 12,68 0,40 12,12"></polygon>
|
|
</svg>
|
|
<div id="companion-eye"><div id="companion-pupil"></div></div>
|
|
<div id="companion-mouth"></div>
|
|
</div>
|
|
</div>
|
|
<script src="./main.ts"></script>
|
|
</body>
|
|
</html>
|