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