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