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