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