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