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