23 lines
453 B
HTML
23 lines
453 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Sample HTML with Script and Style</title>
|
||
|
<style>
|
||
|
body {
|
||
|
background-color: #f0f0f0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Hello, World!</h1>
|
||
|
<script>
|
||
|
function greet() {
|
||
|
return "Hello from JavaScript!";
|
||
|
}
|
||
|
|
||
|
console.log(greet());
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|