Ping: --ms
Inline Preview
RUN
<!DOCTYPE html> <html lang="id"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hello World Dark Mode</title> <style> /* Styling dasar untuk dark mode */ body { background-color: #121212; /* Warna latar gelap */ color: #ffffff; /* Warna teks putih */ font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } h1 { border: 2px solid #333; padding: 20px; border-radius: 10px; background-color: #1e1e1e; } </style> </head> <body> <?php echo "<h1>Hello World</h1>"; ?> </body> </html>
Ping: --ms
New Tab Preview
RUN
<!DOCTYPE html> <html lang="id"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hello World Dark Mode</title> <style> /* Styling dasar untuk dark mode */ body { background-color: #121212; /* Warna latar gelap */ color: #ffffff; /* Warna teks putih */ font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } h1 { border: 2px solid #333; padding: 20px; border-radius: 10px; background-color: #1e1e1e; } </style> </head> <body> <?php echo "<h1>Hello World</h1>"; ?> </body> </html>
ver 1.1.3