Mobile app version of vmapp.org
Login or Join
Harper822

: Hangul calligraphy (TTF) I want a nice hangul font. Can somebody indicate one ? Something elegant and beautiful like this England calligraphy: I would like to apply it using css 3: <!DOCTYPE

@Harper822

Posted in: #Css3 #Fonts

I want a nice hangul font. Can somebody indicate one ? Something elegant and beautiful like this England calligraphy:



I would like to apply it using css 3:

<!DOCTYPE html>

<html>
<head>
<meta charset = "utf-8">

<style>
@font -face {
font-family: "hangul";
src: url("hangul.ttf");
}

body {
font-family: hangul;
}
</style>

<title></title>
</head>

<body>
컴 투 미
</body>
</html>


Thanks

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Harper822

2 Comments

Sorted by latest first Latest Oldest Best

 

@Margaret670

Please remember when using TTF's that not all browsers support it. Internet Explorer, while it does support the CSS3 @Font -face attribute, but it will only use .eot fonts.

From experience, if I have a TTF font and I want to convert this to EOT and SVG font files, the quality will be compromised. It will appear blocky and disgusting.

So, I would recommend using a website called www.fontsquirrel.com/. This will provide you with all the fonts you need and the CSS code you need to make the font accessible to all browsers. It also hosts a converter but be warned the quality of the font it produces is shocking.

10% popularity Vote Up Vote Down


 

@Berryessa370

There are plenty of free fonts on the web. Rather then listing the web sites for you, I would suggest searching "free fonts". You can usually select a category of 'script' or 'calligraphy'.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme