Use on the webTotal Use [ 3504 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/e491df47bdf29ab6d5a52010ea65429a?family=Awesome+South+Korea" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/e491df47bdf29ab6d5a52010ea65429a?family=Awesome+South+Korea);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Awesome South Korea";
src: url("https://db.onlinewebfonts.com/t/e491df47bdf29ab6d5a52010ea65429a.eot");
src: url("https://db.onlinewebfonts.com/t/e491df47bdf29ab6d5a52010ea65429a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/e491df47bdf29ab6d5a52010ea65429a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/e491df47bdf29ab6d5a52010ea65429a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/e491df47bdf29ab6d5a52010ea65429a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/e491df47bdf29ab6d5a52010ea65429a.svg#Awesome South Korea")format("svg");
}
2CSS rules to specify fonts
font-family: "Awesome South Korea";