
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Uppercase Code Text</title> <style> code { text-transform: uppercase; font-family: monospace; background-color: #f4f4f4; padding: 4px; border-radius: 4px; display: inline-block; } </style> </head> <body> <p>The following code is displayed in uppercase:</p> <code>console.log('hello world');</code> </body> </html>