Строка кода: <?php echo "Hello, World!"; ?>

Ещё строка кода: <title>Fuck</title>

Блок кода:
1
2
3
4
5
6
7
8
8
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<title>Sample</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<style type="text/css">
html, body { font:100.1% Arial; } #content { text-align:center; }
</style> <script type="text/javascript">
function f(arg) { alert("Hello, World!"); }
</script> <!-- Это HTML-комментарий --> <div id="content">
<?php // это php-комментарий function f($arg) { echo "Hellow, World!"; f(NULL); } ?>
</div> </html>