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