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