<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">

        <script src="jquery-1.3.2.js" type="text/javascript"></script>

        <script type='text/javascript'>
            $(document).ready(function(){
                $(".red").css("color", "#ff0000");
                            });
        </script>
    </head>

    <body lang="fr-fr" dir="ltr">
        <p> We want to have a
            <span class="red">RED WORD</span>
            colored by jQuery.
        </p>
        <p class="red">
            A whole paragraph colored in red by jQuery.
        </p>
    </body>
</html>