Hi All!

I am maintaining gems4less.com for a while.

I don't know what is the font they are using on the Logo. I tried to find them on dafont.com and urbanfonts.com, but no success.

Anybody outhere have any idea that what fonts is it?

Appreciated your help.

Thanks

Regards,
bhagu

Dani AI

Generated

A few practical notes that extend the thread and help turn an identified face into a solid, maintainable site asset.

Identifying a match is only the first step. Confirm whether the matched font is an unmodified retail face or a custom/hand-tweaked logo version; examine letter details (terminals, crossbar shapes, tails) because small edits make an “exact” match look wrong in text. The contributions from and were useful as starting points; the next tasks are preparation, licensing, and implementation.

Artwork and troubleshooting checklist:

  • Extract a clean, high-resolution version of the logo and remove shadows/gradients before comparing glyph shapes.
  • Look for distinctive glyphs (capital G, lowercase g, R tail, t crossbar) to verify candidates.
  • If the logo is a modified font, trace the letters in a vector editor and edit the glyphs instead of forcing a close-but-wrong font.
  • When automated tools or lists fail, a short manual comparison against a shortlist of candidates often wins.

Implementation best practices:

  • If the font license permits web embedding, self-host WOFF/WOFF2 and declare it with @font-face. Keep a sensible fallback stack and use font-display: swap for better perceived performance.
@font-face {
  font-family: "LogoFont";
  src: url("logo-font.woff2") format("woff2"),
       url("logo-font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.site-logo { font-family: "LogoFont", Arial, sans-serif; }
  • If the logo must match exactly, convert text to outlines and use an SVG (inline SVG preferred for accessibility — include title/desc).
  • Check rendering across platforms, sizes, and devices; tweak kerning or letter-spacing where the web font renders differently.

Final cautions: verify the font license for web/app use, buy the correct license when required, or consider commissioning a small type tweak if the logo is proprietary.

Recommended Answers

All 3 Replies

Hey bhagu,

Go to and submit a picture (screenshot) of this font on that website and they will tell you the font name. If they can't you can submit it on their forum and their font enthusiasts will lend a hand. Hope this helps!

- Drew Parker

commented: great help +5
Member Avatar for Member #334542

Get the font list related to your logo in the attached file. And also thanks to the above replier for giving a good font finder site.

commented: Great Reply - drewpark88 +1

Thanks for replying, I got the fonts. Yey!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.