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