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.07s 54652KB
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>
    /* تنسيقات CSS */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f9;
      color: #333;
    }
    header {
      background-color: #4CAF50;
      color: white;
      padding: 20px;
      text-align: center;
    }
    nav {
      background-color: #333;
      color: white;
      padding: 10px;
      text-align: center;
    }
    nav a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
    }
    nav a:hover {
      text-decoration: underline;
    }
    section {
      padding: 20px;
      text-align: center;
    }
    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 10px;
      position: fixed;
      bottom: 0;
      width: 100%;
    }
  </style>
</head>
<body>
  <!-- العنوان -->
  <header>
    <h1>مرحباً بك في صفحتي</h1>
    <p>هذه صفحة ويب بسيطة باستخدام HTML و CSS</p>
  </header>

  <!-- القائمة -->
  <nav>
    <a href="#about">عنّي</a>
    <a href="#services">خدماتنا</a>
    <a href="#contact">اتصل بنا</a>
  </nav>

  <!-- المحتوى -->
  <section id="about">
    <h2>عنّي</h2>
    <p>أنا شخص مهتم بتعلم تطوير المواقع الإلكترونية وإنشاء محتوى بسيط.</p>
  </section>

  <section id="services">
    <h2>خدماتنا</h2>
    <p>نقدم خدمات تطوير مواقع، تصميم، واستشارات تقنية.</p>
  </section>

  <section id="contact">
    <h2>اتصل بنا</h2>
    <p>يمكنك التواصل عبر البريد الإلكتروني: <a href="mailto:example@example.com">example@example.com</a></p>
  </section>

  <!-- التذييل -->
  <footer>
    &copy; 2024 جميع الحقوق محفوظة
  </footer>
</body>
</html>
stdout
Standard output is empty