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