Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

osbo.com

Happy Easter

Jesus

Acts 16:31 KJV

And they said, Believe on the Lord Jesus Christ, and thou shalt be saved, and thy house.

HTML

CSS

JS

PHP

<?

echo '<!doctype html>
<html>
<head>
    <title>PHP</title>
    <style>
        a, html
        {
            background-color: rgb(255 0 255 / 0.1);
            color: purple;
            transition-duration: 1s;
        }
        a:hover
        {
            background-color: rgb(0 0 0 / 0.1);
            color: black;
        }
    </style>
</head>
<body>
    <a href="/php/">PHP</a>
    <script>
        function myfunction(myparameter)
        {
            const mytarget = myparameter.target;
            const mystyle = mytarget.style;
            mystyle.position = "absolute";
            mystyle.left = `${Math.random() * (window.innerWidth - mytarget.offsetWidth)}px`;
            mystyle.top = `${Math.random() * (window.innerHeight - mytarget.offsetHeight)}px`;
        }
        document.querySelector("a").addEventListener("mouseout", myfunction);
    </script>
</body>
</html>';

?>
<!doctype html>
<html>
<head>
    <title>PHP</title>
    <style>
        a, html
        {
            background-color: rgb(255 0 255 / 0.1);
            color: purple;
            transition-duration: 1s;
        }
        a:hover
        {
            background-color: rgb(0 0 0 / 0.1);
            color: black;
        }
    </style>
</head>
<body>
    <a href="/php/">PHP</a>
    <script>
        function myfunction(myparameter)
        {
            const mytarget = myparameter.target;
            const mystyle = mytarget.style;
            mystyle.position = "absolute";
            mystyle.left = `${Math.random() * (window.innerWidth - mytarget.offsetWidth)}px`;
            mystyle.top = `${Math.random() * (window.innerHeight - mytarget.offsetHeight)}px`;
        }
        document.querySelector("a").addEventListener("mouseout", myfunction);
    </script>
</body>
</html>

SVG

HomeMenu