Code Templates

HTML Template

This is a basic HTML template structure ready for your content:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document Title</title>
</head>
<body>
    <h1>Welcome to My Page</h1>
    <p>This is a sample paragraph.</p>
</body>
</html>

CSS Template

This is a sample CSS template for styling your web page:

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
h1 {
    color: #333;
}

JavaScript Template

This is an example of a simple JavaScript template:

function greet(name) {
    console.log("Hello, " + name + "!");
}
greet("World");