Mind Reading Web Site!

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Franklin P Patchey

    Mind Reading Web Site!

    Please look at:-



    and tell me how to change the purple text that says "Try Next" to black and
    font face Comic sans MS and make the site still work! without any runtime
    errors.


  • Hywel Jenkins

    #2
    Re: Mind Reading Web Site!

    In article <bkambp$vdn$1@n ewsg2.svr.pol.c o.uk>, REMOVETHIS10100 1
    @talk21.com says...[color=blue]
    > Please look at:-
    >
    > http://theorangesite.mysite.freeserv...us/002/001.htm
    >
    > and tell me how to change the purple text that says "Try Next" to black and
    > font face Comic sans MS and make the site still work! without any runtime
    > errors.
    >[/color]
    Why would you want to use JavaScript for that? CSS will do it quite
    easily.

    It's a dumb trick, BTW.

    --
    Hywel I do not eat quiche


    Comment

    • Franklin P Patchey

      #3
      Re: Mind Reading Web Site!

      OK, I'm a novice and don't know what CSS is
      tell me how to do it!

      "Hywel Jenkins" <hyweljenkins@h otmail.com> wrote in message
      news:MPG.19d2ef b415b5999f9896a 1@news.individu al.net...[color=blue]
      > In article <bkambp$vdn$1@n ewsg2.svr.pol.c o.uk>, REMOVETHIS10100 1
      > @talk21.com says...[color=green]
      > > Please look at:-
      > >
      > > http://theorangesite.mysite.freeserv...us/002/001.htm
      > >
      > > and tell me how to change the purple text that says "Try Next" to black[/color][/color]
      and[color=blue][color=green]
      > > font face Comic sans MS and make the site still work! without any[/color][/color]
      runtime[color=blue][color=green]
      > > errors.
      > >[/color]
      > Why would you want to use JavaScript for that? CSS will do it quite
      > easily.
      >
      > It's a dumb trick, BTW.
      >
      > --
      > Hywel I do not eat quiche
      > http://hyweljenkins.co.uk/
      > http://hyweljenkins.co.uk/mfaq.php[/color]


      Comment

      • Lee

        #4
        Re: Mind Reading Web Site!

        Hywel Jenkins said:[color=blue]
        >
        >In article <bkambp$vdn$1@n ewsg2.svr.pol.c o.uk>, REMOVETHIS10100 1
        >@talk21.com says...[color=green]
        >> Please look at:-
        >>
        >> http://theorangesite.mysite.freeserv...us/002/001.htm
        >>
        >> and tell me how to change the purple text that says "Try Next" to black and
        >> font face Comic sans MS and make the site still work! without any runtime
        >> errors.
        >>[/color]
        >Why would you want to use JavaScript for that? CSS will do it quite
        >easily.
        >
        >It's a dumb trick, BTW.[/color]

        It's also coded badly, and won't work in all browsers even without changes.

        Comment

        • Hywel Jenkins

          #5
          Re: Mind Reading Web Site!

          In article <bkand5$ef$1@ne wsg2.svr.pol.co .uk>, REMOVETHIS10100 1
          @talk21.com says...[color=blue]
          > "Hywel Jenkins" <hyweljenkins@h otmail.com> wrote in message
          > news:MPG.19d2ef b415b5999f9896a 1@news.individu al.net...[color=green]
          > > In article <bkambp$vdn$1@n ewsg2.svr.pol.c o.uk>, REMOVETHIS10100 1
          > > @talk21.com says...[color=darkred]
          > > > Please look at:-
          > > >
          > > > http://theorangesite.mysite.freeserv...us/002/001.htm
          > > >
          > > > and tell me how to change the purple text that says "Try Next" to black[/color][/color]
          > and[color=green][color=darkred]
          > > > font face Comic sans MS and make the site still work! without any[/color][/color]
          > runtime[color=green][color=darkred]
          > > > errors.
          > > >[/color]
          > > Why would you want to use JavaScript for that? CSS will do it quite
          > > easily.
          > >[/color]
          > OK, I'm a novice and don't know what CSS is
          > tell me how to do it![/color]

          <style type="text/css">
          <!--
          A
          {
          color: #000000;
          font-family: Comic Sans;
          }
          </style>

          --
          Hywel I do not eat quiche


          Comment

          • Lasse Reichstein Nielsen

            #6
            Re: Mind Reading Web Site!

            Hywel Jenkins <hyweljenkins@h otmail.com> writes:
            [color=blue][color=green]
            > > OK, I'm a novice and don't know what CSS is
            > > tell me how to do it![/color][/color]

            CSS have rules, just as HMTL and Javascript. While browsers might
            understand whant you mean if you don't follow them, some probably
            won't. I recommend finding a tutorial on the net and learn to
            understand CSS.
            [color=blue]
            > <style type="text/css">[/color]

            Btw, style tags can only be placed in the head element.
            [color=blue]
            > <!--[/color]

            You don't need HTML comments in style sheets, just as you don't need
            it Javascript. While implemented later in browsers than script
            support, both the script and style tags were introduced in HTML 3.2
            which became a recommendation in January 1997. All serious browsers
            created after that time will understand the style tag and know not
            to render the contents. These browsers include Netscape 4 and IE 3.

            If you insist on adding the illegal, but browser accepted, HTML
            comments to hide the script from old browsers, you should also end the
            HTML comment again with a -->.
            [color=blue]
            > A
            > {
            > color: #000000;
            > font-family: Comic Sans;[/color]

            Values for font-family that contain spaces must be quoted.
            font-family: "Comic Sans";

            For browsers without access to the font "Comic Sans" (by which you
            probably mean the one called "Comic Sans MS"), you can add an
            alternative font. I would use the generic name "sans-serif" for
            the browser's default sans serif font.
            font-family: "Comic Sans", sans-serif;
            [color=blue]
            > }
            > </style>[/color]

            /L 'and I so hate Comic Sans MS, but that is a different kind of problem!'
            --
            Lasse Reichstein Nielsen - lrn@hotpop.com
            Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit. html>
            'Faith without judgement merely degrades the spirit divine.'

            Comment

            • Hywel Jenkins

              #7
              Re: Mind Reading Web Site!

              In article <wuc5jjh5.fsf@h otpop.com>, lrn@hotpop.com says...[color=blue]
              > Hywel Jenkins <hyweljenkins@h otmail.com> writes:
              >[color=green][color=darkred]
              > > > OK, I'm a novice and don't know what CSS is
              > > > tell me how to do it![/color][/color]
              >
              > CSS have rules, just as HMTL and Javascript. While browsers might
              > understand whant you mean if you don't follow them, some probably
              > won't. I recommend finding a tutorial on the net and learn to
              > understand CSS.
              >[color=green]
              > > <style type="text/css">[/color]
              >
              > Btw, style tags can only be placed in the head element.
              >[color=green]
              > > <!--[/color]
              >
              > You don't need HTML comments in style sheets, just as you don't need
              > it Javascript.[/color]

              Habit.

              [color=blue]
              > If you insist on adding the illegal, but browser accepted, HTML
              > comments to hide the script from old browsers, you should also end the
              > HTML comment again with a -->.[/color]

              Mistake.
              [color=blue][color=green]
              > > font-family: Comic Sans;[/color][/color]

              And another.

              [color=blue]
              > /L 'and I so hate Comic Sans MS, but that is a different kind of problem!'[/color]

              Agreed. I know a business that uses it for body text in formal letters.

              --
              Hywel I do not eat quiche


              Comment

              • asdf asdf

                #8
                Re: Mind Reading Web Site!

                I'm always amused by this trick. The orange hurts my eyes, but the
                trick itself is gold.

                Comment

                Working...