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