test html 2 0924
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS & JS Test</title>
<style>
body {
font-family: sans-serif;
background-color: #f0f0f0;
}
h1 {
color: #333;
}
</style>
</head>
<body>
<h1>Testing CSS & JavaScript</h1>
<p>This page includes both CSS and a simple script.</p>
<button onclick="alert('Hello from JavaScript!');">Click Me</button>
<script>
console.log("Script executed successfully.");
</script>
</body>
</html>
まだコメントはありません。最初のコメントを書いてみませんか?
コメントを投稿するには、ログインする必要があります。