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