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