syntax highlighter

Show Code
def hello_world():
    print("Hello, world!")

# This is a comment
hello_world()
function greet(name) {
    console.log('Hello, ' + name + '!');
}

// Example usage
greet('World');
  
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>My Web Page</title>
</head>
<body>

  <h1>Hello, World!</h1>
  <p>This is a simple web page.</p>

</body>
</html>
  

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

h1 {
  color: #0066cc;
}

p {
  margin-bottom: 20px;
}