print('Hello world!')<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Mini City Drive</title>
<style>
body{
margin:0;
overflow:hidden;
background:#3fa34d;
}
#game{
width:100vw;
height:100vh;
position:relative;
background:#666;
}
#road{
position:absolute;
left:50%;
top:0;
width:400px;
height:100%;
transform:translateX(-50%);
background:#444;
}
#car{
position:absolute;
width:50px;
height:80px;
background:red;
border-radius:8px;
left:50%;
bottom:30px;
transform:translateX(-50%);
}
</style>
To embed this project on your website, copy the following code and paste it into your website's HTML: