Fonts for Web Pages?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dcortez
    DINO CORTEZ™
    • Jun 2003
    • 2145

    #1

    Fonts for Web Pages?

    Hi,

    I'm getting a bit working to common denominators for web fonts and I wondered if there was a way to deploy fonts from a web site to ensure your surfer has it.

    1) Is there some meta-coding that can be used to send a font over to a surfer if they don't have it.

    2) If so, is special licensing required for fonts deployed this way?

    Thanks,
    -Dino
  • Basic_man
    Programming King Pin
    • Oct 2003
    • 27360

    #2
    I don't think there is a way to make install a font automaticly from a website.. you can use Flash or text written in a gif
    UUGallery Builder - automated photo/video gallery plugin for Wordpress!
    Stop looking! Checkout Naked Hosting, online since 1999 !

    Comment

    • dcortez
      DINO CORTEZ™
      • Jun 2003
      • 2145

      #3
      Originally posted by Basic_man
      I don't think there is a way to make install a font automaticly from a website.. you can use Flash or text written in a gif
      Thanks.

      I kind of figured that. I guess when one lists cascading fonts in styles, they are stating their wish list and if a surfer has a font for which the page looks as intended, bingo. Otherwise, the other 'stand-ins' do their best.

      How about this then:

      Is there a current list of fonts standard to the most popular platforms?

      Maybe a custom browser/platform based approach might work best.

      -Dino

      Comment

      • MBS Auto
        Confirmed User
        • Oct 2004
        • 1725

        #4
        I live Veranda
        Shoes and Boot

        Comment

        • dcortez
          DINO CORTEZ™
          • Jun 2003
          • 2145

          #5
          Originally posted by MBS Auto
          I live Veranda
          I'm sorry, I don't understand what you mean?

          -Dino

          Comment

          • adultpixel
            Confirmed User
            • Jan 2004
            • 747

            #6
            Originally posted by dcortez
            I'm sorry, I don't understand what you mean?

            -Dino
            MBS Auto did mean the font Verdana
            MAKE $$$ WITH BRAND NAMES THAT SELL THEMSELVES

            Comment

            • DesignWise
              Confirmed User
              • May 2004
              • 3575

              #7
              verdana is a good pixel font
              www.highendcreatives.com Galleries that sells.. . ICQ: 294696371

              Comment

              • dcortez
                DINO CORTEZ™
                • Jun 2003
                • 2145

                #8
                Originally posted by adultpixel
                MBS Auto did mean the font Verdana
                Ah. Got it.

                In that case, the common safe ones usually are:

                - Courier New
                - Times New Roman
                - Arial (and Arial Narrow ?)
                - Verdana

                (I'm bored with these fonts).

                I kind of like the script style fonts, but they seem to be risky choices.

                -Dino

                Comment

                • aico
                  Moo Moo Cow
                  • Mar 2004
                  • 14748

                  #9
                  Originally posted by MBS Auto
                  I live Veranda
                  On the lips would be fine

                  Comment

                  • clubahhh
                    Registered User
                    • Dec 2004
                    • 54

                    #10
                    Best bet is to use CSS an dgo through a rule set

                    p {
                    font-family: "Nice Script", "Another Nice Font", Verdana, Arial, Sans-Serif;
                    }


                    - Courier New
                    - Times New Roman
                    - Arial (and Arial Narrow ?)
                    - Verdana

                    Definatly are limited to the type of fonts to use.. Especially if you want to use the cursive script fonts...

                    One way would be to decide whether you want a Serif (with tails) or Sans-Serif (without tails), then find a fancy font within that genre then cascade as in my example above..

                    What you want to avoid is designing a site for San-Serif and the user don't have the font so it defaults to a Serif font, would make your site look pretty shit...

                    Im pretty sure you could embed the font some how into the HTML page and when it loads it asks to the user if they want to install the font.. don't rekon you would be able to get an auto install though.. Plus I also think it is IE specific.. Remember reading about it ages ago but was working for the gov at the time so I couldn't use it even if I wanted to.. check www.google.com

                    hope my long rant helps...
                    SIG TOO BIG! Maximum 120x60 button and no more than 3 text lines of DEFAULT SIZE and COLOR. Unless your sig is for a GFY top banner sponsor, you may use a 624x80 instead of a 120x60. Let me repeat... A 120 x 60 button and no more that 3 lines of DEFAULT SIZE AND COLOR text.

                    Comment

                    • calmlikeabomb
                      Confirmed User
                      • May 2004
                      • 1323

                      #11
                      yeah clubahhh suggestion is your best bet if you are not already using css.

                      Here is a bit of my css source:

                      Code:
                      /* Controls layout settings */
                      body {
                      	background-image: url(images/gradient.gif);
                      	background-repeat: repeat-x;
                      	background: #294189;
                      	color: #ffffff;
                      	font-family: Arial, Verdana, Helvetica, sans-serif;
                      	font-size: 8pt;
                      	line-height: 1.5;
                      	margin: 0px 0px 0px 0px;
                      	padding: 0px;
                      	}
                      subarus.

                      Comment

                      Working...