fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13. }
  14. }
Success #stdin #stdout 0.12s 54640KB
stdin
<!DOCTYPE html>
<html lang="ar">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>قرآن كريم كامل</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #0A4D32;
            color: white;
            text-align: center;
            margin: 0;
            padding: 0;
        }
        .header {
            background-color: #06412A;
            padding: 20px;
            font-size: 24px;
            position: relative;
        }
        .menu {
            position: fixed;
            top: 0;
            left: -250px;
            width: 250px;
            height: 100%;
            background: #06412A;
            padding-top: 60px;
            transition: left 0.3s ease-in-out;
        }
        .menu a {
            display: block;
            color: white;
            padding: 15px;
            text-decoration: none;
        }
        .menu a:hover {
            background: #0A4D32;
        }
        .menu-btn {
            position: absolute;
            left: 20px;
            top: 20px;
            cursor: pointer;
            font-size: 30px;
        }
        .container {
            padding: 20px;
        }
        .quran-cover {
            width: 200px;
            margin-top: 20px;
        }
    </style>
</head>
<body>
    <div class="header">
        <span class="menu-btn" onclick="toggleMenu()">☰</span>
        قرآن كريم كامل
    </div>
    <div class="menu" id="menu">
        <a href="#">القرآن الكريم</a>
        <a href="#">الحسبة</a>
        <a href="#">المساعدة</a>
        <a href="#">البحث</a>
    </div>
    <div class="container">
        <img src="https://u...content-available-to-author-only...a.org/wikipedia/commons/2/2f/Quran_Kareem.png" alt="مصحف" class="quran-cover">
        <p>مرحبًا بك في تطبيق القرآن الكريم</p>
    </div>
    <script>
        function toggleMenu() {
            const menu = document.getElementById("menu");
            menu.style.left = (menu.style.left === "0px") ? "-250px" : "0px";
        }
    </script>
</body>
</html>
stdout
Standard output is empty