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