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