<DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a H1 heading.</h1> <p>This is a paragraph.</p> </body> </html>
body { background-color:blue; } h2 { color:yellow; font-size:20px; }
public class MyClass { public static void main(String[] args) { System.out.println("Hello World"); } }
alert("alert in Javascript")
<?php echo "My first PHP Script"; ?>
print("Hello World in Python")