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