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