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 54648KB
stdin
<!DOCTYPE html>
<html lang="vi">
<head>
  <meta charset="UTF-8">
  <title>Website của tôi</title>
  <style>
    body {
      font-family: Arial, sans-serif;
    }
    .container {
      display: flex;
      border: 1px solid #999;
      width: 800px;
      margin: auto;
      margin-top: 50px;
    }
    .menu {
      width: 200px;
      border-right: 1px solid #999;
      padding: 10px;
    }
    .menu h3 {
      color: red;
      font-weight: bold;
    }
    .menu ul {
      list-style-type: disc;
      padding-left: 20px;
    }
    .content {
      flex: 1;
      padding: 10px;
    }
    .header {
      text-align: center;
      font-weight: bold;
      font-size: 20px;
      color: red;
      margin-top: 30px;
    }
  </style>
</head>
<body>

  <div class="header">Chào mừng các bạn đến với Website của tôi</div>

  <div class="container">
    <div class="menu">
      <h3>Menu chính</h3>
      <ul>
        <li>Giới thiệu</li>
        <li>CT Đào tạo</li>
        <li>Image – Music</li>
        <li>KQ học tập</li>
        <li>Thăm dò</li>
      </ul>
    </div>
    <div class="content">
      <!-- Nội dung sẽ hiển thị ở đây -->
    </div>
  </div>

</body>
</html>
stdout
Standard output is empty