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