コードラボJP
国内最大級プログラミング学習支援サイト
HTMLサンプルコード
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
CSSサンプルコード
body {
background-color: #f0f0f0;
color: #333;
font-family: Arial, sans-serif;
}
h1 {
color: #083344;
font-size: 2em;
margin-bottom: 0.5em;
}
p {
line-height: 1.5;
margin-bottom: 1em;
}
JavaScriptサンプルコード
document.addEventListener('DOMContentLoaded', function() {
const greeting = 'Hello, world!';
console.log(greeting);
document.querySelector('h1').textContent = greeting;
});
Pythonサンプルコード
most_popular_language = "Python"
if most_popular_language == "Python":
print("Pythonは最も人気なプログラミング言語です")
SQLサンプルコード
SELECT * FROM Customers
WHERE Country='JAPAN';
PHPサンプルコード
& lt;!DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>
Kotlinサンプルコード
fun main(args : Array) {
println("Hello World")
}