Use on the webTotal Use [ 4998 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/aa7eeab179d4e3039f95d0f33976fedf?family=Gwondrong" 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/aa7eeab179d4e3039f95d0f33976fedf?family=Gwondrong);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Gwondrong";
src: url("https://db.onlinewebfonts.com/t/aa7eeab179d4e3039f95d0f33976fedf.eot");
src: url("https://db.onlinewebfonts.com/t/aa7eeab179d4e3039f95d0f33976fedf.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/aa7eeab179d4e3039f95d0f33976fedf.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/aa7eeab179d4e3039f95d0f33976fedf.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/aa7eeab179d4e3039f95d0f33976fedf.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/aa7eeab179d4e3039f95d0f33976fedf.svg#Gwondrong")format("svg");
}
2CSS rules to specify fonts
font-family: "Gwondrong";