What font is this?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Unknown User

    What font is this?

    I tried to look for the font-family of the main title of this page
    (http://dev.mysql.com/doc/mysql/en/in...ng-source.html) where it is
    written:

    "MySQL Reference Manual :: 2.8 MySQL Installation Using a Source
    Distribution"

    But I couldn't find it. I think this font is nice. Is it Futura?
    Thanks,

    --
    Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
  • C A Upsdell

    #2
    Re: What font is this?

    Unknown User wrote:[color=blue]
    > I tried to look for the font-family of the main title of this page
    > (http://dev.mysql.com/doc/mysql/en/in...ng-source.html) where it is
    > written:
    >
    > "MySQL Reference Manual :: 2.8 MySQL Installation Using a Source
    > Distribution"
    >
    > But I couldn't find it. I think this font is nice. Is it Futura?
    > Thanks,[/color]

    If you had looked at the source you would have found that it is Verdana.


    Comment

    • Steve Pugh

      #3
      Re: What font is this?

      "Unknown User" <me@privacy.net > wrote:
      [color=blue]
      >I tried to look for the font-family of the main title of this page
      >(http://dev.mysql.com/doc/mysql/en/in...ng-source.html) where it is
      >written:
      >
      >"MySQL Reference Manual :: 2.8 MySQL Installation Using a Source
      >Distribution "
      >
      >But I couldn't find it. I think this font is nice. Is it Futura?[/color]

      h1 {
      font-family: verdana,arial,h elvetica,sans-serif;
      }

      So depending on what you have installed it's either Verdana or Arial
      or Helvetica or your browser's default sans-serif font.

      Steve

      --
      "My theories appal you, my heresies outrage you,
      I never answer letters and you don't like my tie." - The Doctor

      Steve Pugh <steve@pugh.net > <http://steve.pugh.net/>

      Comment

      • Unknown User

        #4
        Re: What font is this?

        On Sun, 27 Mar 2005 18:25:25 -0300, Steve Pugh <steve@pugh.net > wrote:

        [color=blue]
        > So depending on what you have installed it's either Verdana or Arial
        > or Helvetica or your browser's default sans-serif font.[/color]

        Yes, I saw this, but on my computer it is not verdana for some reason. I
        have a fresh Windows install. Or maybe there is another rule in his style
        sheet that cancel the one for h1...


        --
        Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

        Comment

        • denisb

          #5
          Re: What font is this?

          Unknown User <me@privacy.net > wrote:[color=blue]
          > I tried to look for the font-family of the main title of this page
          > (http://dev.mysql.com/doc/mysql/en/in...ng-source.html) where it is
          > written:
          > "MySQL Reference Manual :: 2.8 MySQL Installation Using a Source
          > Distribution"
          > But I couldn't find it. I think this font is nice. Is it Futura?[/color]

          html :
          <div id="subfld">
          <h1> MySQL Reference Manual :: 2.8 MySQL Installation Using a Source
          Distribution</h1>
          </div>

          css :
          body {font:70%/126% verdana, arial, helvetica, sans-serif;}
          #subfld {width:99%;back ground:url("../tabs/subfld.png");
          float:left;posi tion:relative;t op:-1px;}
          #subfld h1 {padding:10px 0px 0px 1.6%;}

          ==> just 'verdana' or 'arial' or 'helvetica' or 'sans-serif'

          but, maybe you are talking about the font used in the picture (logotype)
          <http://dev.mysql.com/common/logos/mysql_100x52-64.gif>
          it seems to be a specific typeface that looks like 'digital-sans', but
          it is not 'digital-sans' because the 'Q'.

          --
          @@@@@
          E -00 comme on est very beaux dis !
          ' `) /
          |\_ =="

          Comment

          • Windsun

            #6
            Re: What font is this?

            Looks like Verdana to me.

            -------------------------------------------------------------------------------
            "C A Upsdell" <""cupsdellXXX\ "@-@-@XXXupsdell.com "> wrote in message
            news:t-6dnXxSoqA3vtrfR Vn-rg@rogers.com.. .[color=blue]
            > Unknown User wrote:[color=green]
            >> I tried to look for the font-family of the main title of this page
            >> (http://dev.mysql.com/doc/mysql/en/in...ng-source.html) where it is
            >> written:[/color][/color]


            Comment

            Working...