Welcome to Code Styler! Below you can add multiple files with code, each styled like a GitHub Gist.
// JavaScript file example
function helloWorld() {
console.log("Hello, world!");
}
/* CSS file example */
body {
background-color: #1e1e1e;
color: white;
}
<!-- HTML file example -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Example Page</title>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>