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