Skip to content

ZZ – Text Test Page

P-00
P-01
P-02
previous arrow
next arrow
A bit late for a Christmas card image; perhaps it’ll come in handy later in the year.
The snowdrops were wonderful but they have made way for a drop of snow
That slight tint of green on this willow remind us that spring is just round the corner
slide 1
Image Slide 2
White Brown Cow
Image Slide 1
Highland Cattle
Image Slide 3
Grizzly Bear
previous arrowprevious arrow
next arrownext arrow
 
Shadow
P-00
P-01
P-02
previous arrow
next arrow

sfdsdfgsgfsdfgsdfgsdfsdfgsdfgsdfgsdfg

PE html>
<html>

    <head>
        <title> Blinking feature using JavaScript </title>
        <style>
            #blink {
                font-size: 20px;
                font-weight: bold;
                color: #2d38be;
                transition: 0.5s;
            }
        </style>
    </head>

    <body>
        <p id="blink"> This is an example of blinking text using JS. </p>
        <script type="text/javascript">
            var blink = document.getElementById('blink');
            setInterval(function() {
                blink.style.opacity = (blink.style.opacity == 0 ? 1 : 0);
            }, 1500);
        </script>
    </body>