GorkemsCafe/public/friskSprites/index2.html
gocivici 49aa969572 - added dino sprites
- updates html background
-update instructions.txt
2024-02-24 16:43:25 +03:00

33 lines
760 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Görkem's Cafe</title>
</head>
<body>
<!-- <img id="myImage" src="4vcysm.png"> -->
<canvas id="canvas"></canvas>
<form id="textInput" action="" >
<input placeholder="Say somethinng" id="input" autocomplete="off" /><button>Send</button>
</form>
</body>
<style>
#input {
margin: 0px;
width: 735px;
font-size: 18px;
}
#textInput > button{
font-size: 18px;
}
</style>
<script src="https://cdn.socket.io/4.6.1/socket.io.min.js"></script>
<script src="./classes/Sprite.js"></script>
<script src="./classes/Player.js"></script>
<script src="index.js"></script>
</html>