Untitled

 avatar
unknown
plain_text
a month ago
1.1 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Reaching Game</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="game-container">
        <div class="target"></div>
        <div class="player"></div>
    </div>
    <p id="message">Reach the target!</p>
    <script src="script.js"></script>
</body>
</html>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.game-container {
    position: relative;
    width: 500px;
    height: 300px;
    background-color: lightgray;
    border: 2px solid #333;
}

.target {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: red;
    top: 50px;
    left: 200px;
    border-radius: 50%;
}

.player {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: green;
    bottom: 0;
    left: 20px;
    border-radius: 50%
Leave a Comment