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