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: #162432; /* Warna latar gelap */ color: #00ee00; /* Warna teks putih */ font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } h1 { border: 3px solid #00ee00; padding: 30px; border-radius: 17px; background-color: #1e2e3e; } </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: #162432; /* Warna latar gelap */ color: #00ee00; /* Warna teks putih */ font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } h1 { border: 3px solid #00ee00; padding: 30px; border-radius: 17px; background-color: #1e2e3e; } </style> </head> <body> <?php echo "<h1>Hello World</h1>"; ?> </body> </html>
ver 1.1.3