fork download
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Salutations</title>
  7. <style>
  8. body {
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. height: 100vh;
  13. margin: 0;
  14. background-color: #f0f8ff;
  15. font-family: Arial, sans-serif;
  16. }
  17. h1 {
  18. color: #0066cc;
  19. text-align: center;
  20. padding: 20px;
  21. border: 2px solid #0066cc;
  22. border-radius: 10px;
  23. background-color: white;
  24. box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <h1>Bonjour à tous</h1>
  30. </body>
  31. </html>
Success #stdin #stdout 0.02s 26008KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Salutations</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f0f8ff;
            font-family: Arial, sans-serif;
        }
        h1 {
            color: #0066cc;
            text-align: center;
            padding: 20px;
            border: 2px solid #0066cc;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
    </style>
</head>
<body>
    <h1>Bonjour à tous</h1>
</body>
</html>