Code Styler

Screenshot

Welcome to Code Styler! Below you can add multiple files with code, each styled like a GitHub Gist.

script.js
// JavaScript file example
function helloWorld() {
    console.log("Hello, world!");
}
styles.css
/* CSS file example */
body {
    background-color: #1e1e1e;
    color: white;
}
index.html
<!-- HTML file example -->
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Example Page</title>
</head>
<body>
    <h1>Hello, world!</h1>
</body>
</html>