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