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