Files
webfejlesztes_11/alapok/index.html
Kovács Rudolf 8c80246c82 Js alapok
2026-09-08 11:38:36 +02:00

20 lines
470 B
HTML

<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript alapok</title>
<script defer src="prog1.js"></script>
<script defer src="prog2.js"></script>
</head>
<body>
<h1>Javascript alapok</h1>
<script>
alert("JavaScript");
console.log("Javascript");
document.writeln("Inline Javascript");
</script>
</body>
</html>