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