OneCompiler

Michael game download

162

Example heading with h2 size

Example heading with h3 size

Following is sample java code.

int i = 10;
if(i>0){
    System.out.println('positive');
}
 
```java
 ~~<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Michael's Games</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }
        header {
            background-color: #4CAF50;
            color: white;
            padding: 1rem;
            text-align: center;
        }
        nav {
            display: flex;
            justify-content: center;
            background-color: #333;
        }
        nav a {
            color: white;
            padding: 1rem;
            text-decoration: none;
            text-align: center;
        }
        nav a:hover {
            background-color: #575757;
        }
        .container {
            padding: 2rem;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 1rem;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
        .game-board {
            display: grid;
            grid-template-columns: repeat(3, 100px);
            grid-gap: 10px;
            margin-top: 20px;
        }
        .cell {
            width: 100px;
            height: 100px;
            border: 2px solid #333;
            font-size: 50px;
            text-align: center;
            line-height: 100px;
            cursor: pointer;
        }
    </style>
</head>
<body>

<header>
    <h1>Michael's Games</h1>
    <p>Welcome to my personal webpage about games and APK games</p>
</header>

<nav>
    <a href="#about">About</a>
    <a href="#games">Games</a>
    <a href="#apk-games">APK Games</a>
    <a href="#contact">Contact</a>
</nav>

<div class="container" id="about">
    <h2>About</h2>
    <p>Hi, I'm Michael. This webpage is all about my passion for games, especially APK games. Here, you can find information about my favorite games, reviews, and download links for some great APKs.</p>
</div>

<div class="container" id="games">
    <h2>Games</h2>
    <h3>Tic-Tac-Toe</h3>
    <p>Download and enjoy the classic game of Tic-Tac-Toe!</p>
    <a href="tic_tac_toe.html" download>Download Tic-Tac-Toe</a>
</div>

<div class="container" id="apk-games">
    <h2>APK Games</h2>
    <p>For those interested in APK games, here are some popular ones you might enjoy:</p>
    <ul>
        <li>Geometry Dash</li>
        <li>Clash of Clans</li>
        <li>PUBG Mobile</li>
        <li>Fortnite</li>
    </ul>
</div>

<div class="container" id="contact">
    <h2>Contact</h2>
    <p>You can reach me at: <a href="mailto:[email protected]">[email protected]</a></p>
</div>

<footer>
    <p>&copy; 2024 Michael's Games. All rights reserved.</p>
</footer>

</body>
</html>
~~