Can someone identify this font

Discussion in 'Graphics & Multimedia' started by tyankee, Feb 20, 2019.

  1. #1
    can someone please identify the font used in the logo. text is 'Metta Health Care'.

    thanks.
     

    Attached Files:

    tyankee, Feb 20, 2019 IP
  2. qwikad.com

    qwikad.com Illustrious Member Affiliate Manager

    Messages:
    7,279
    Likes Received:
    1,696
    Best Answers:
    31
    Trophy Points:
    475
    #2
    qwikad.com, Feb 20, 2019 IP
  3. tyankee

    tyankee Well-Known Member

    Messages:
    1,023
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    150
    #3
    yeah i checked all of those sites and none can identify it
     
    tyankee, Feb 20, 2019 IP
  4. denis bayly

    denis bayly Well-Known Member

    Messages:
    110
    Likes Received:
    29
    Best Answers:
    6
    Trophy Points:
    105
    #4
    Hi there yankee,

    it is a Google font. ;)

    Here is a little example code for you to examine...

    
    
    <!DOCTYPE HTML>
    <html lang="en">
    <head>
    
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,height=device-height,initial-scale=1">
    
    <title>Google "Nanum Brush Script" font</title>
    
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nanum+Brush+Script" media="screen">
    
    <style media="screen">
    body {
        background-color: #f9f9f9;
        font: 100% / 162% BlinkMacSystemFont, -apple-system, 'Segoe UI', roboto, helvetica, arial, sans-serif;
     }
    
    h1 {
        font-family: 'Nanum Brush Script';
        font-size: 2.5em;
        font-weight: normal;
        text-align: center;
     }
    </style>
    
    </head>
    <body> 
    
    <h1>Metta Health Care</h1>
    
    </body>
    </html>
    
    
    Code (markup):

    coothead
     
    denis bayly, Feb 21, 2019 IP
    tyankee and qwikad.com like this.
  5. tyankee

    tyankee Well-Known Member

    Messages:
    1,023
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    150
    #5
    perfect. thank you.
     
    tyankee, Feb 21, 2019 IP
  6. denis bayly

    denis bayly Well-Known Member

    Messages:
    110
    Likes Received:
    29
    Best Answers:
    6
    Trophy Points:
    105
    #6

    No problem, you're very welcome. ;)

    coothead
     
    denis bayly, Feb 22, 2019 IP