File "code.html"

Full Path: /home/analogde/www/boulot/Test02/code.html
File size: 268 bytes
MIME-type: text/html
Charset: utf-8

<!DOCTYPE html>
<html>
<head>
    <title>Addition App</title>

    <meta charset="utf-8">

    <script>

        a = 5;
        b = 6;
        c = a + b;
        console.log(c);

    </script>

</head>

<body>
<p> Blabla </p>

</body>
</html>