Naomi's Coding Hub

HTML Basics


<!DOCTYPE html>
<html>
<head>
    <title>Hello HTML</title>
</head>
<body>
    <h1>Hello World</h1>
</body>
</html>
        

Simple HTML template to start learning web development.

CSS Example


body {
    background-color: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Courier New', monospace;
}
h1 {
    color: #ff6b6b;
}
        

Basic styling for dark-mode code websites.

JavaScript Example


console.log("Hello, world!");
        

Simple JS code to print in console.

Python Example


print("Hello, world!")
for i in range(5):
    print("Number:", i)
        

Basic Python code snippet.