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