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