<!DOCTYPE html>
<html>
<head>
<title>Hello HTML</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
Simple HTML template to start learning web development.
body {
background-color: #1e1e1e;
color: #d4d4d4;
font-family: 'Courier New', monospace;
}
h1 {
color: #ff6b6b;
}
Basic styling for dark-mode code websites.
console.log("Hello, world!");
Simple JS code to print in console.
print("Hello, world!")
for i in range(5):
print("Number:", i)
Basic Python code snippet.